- 15 Aug, 2012 40 commits
-
-
kevers@chromium.org authored
BUG=139834 Review URL: https://chromiumcodereview.appspot.com/10837190 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151698 0039d316-1c4b-4281-b951-d872f2087c98
-
kaznacheev@chromium.org authored
BUG=None Review URL: https://chromiumcodereview.appspot.com/10832270 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151697 0039d316-1c4b-4281-b951-d872f2087c98
-
disher@chromium.org authored
Historically, all the entry-points into the OutputConfigurator needed to refresh their view of the cached output data. This newly-added entry-point doesn't do this which can lead to the cached data becoming stale (since it technically only applies within the context where the corresponding XRRScreenResources are valid). Ideally, no such information would be cached and every attempt to evaluate or change the state of the video outputs would start by requesting this structure. That change is of larger scope and risk, though, so this is the tactical solution to the immediate problem suitable for porting to stable branches. BUG=chromium:140807 TEST=Manually tested that ctrl-F4 and "manage displays" (in chrome://settings) work on a Lumpy the same way with and without this change Review URL: https://chromiumcodereview.appspot.com/10825306 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151696 0039d316-1c4b-4281-b951-d872f2087c98
-
bbudge@chromium.org authored
BUG=116317 TEST=compiles TBR=bbudge@chromium.org Review URL: https://chromiumcodereview.appspot.com/10829338 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151695 0039d316-1c4b-4281-b951-d872f2087c98
-
flackr@chromium.org authored
BUG=138281 TEST=No touch optimized ui in about flags, nor does it get set when a touch screen is plugged in. Review URL: https://chromiumcodereview.appspot.com/10832252 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151694 0039d316-1c4b-4281-b951-d872f2087c98
-
bbudge@chromium.org authored
This CL removes our custom GYP flag and modifies the build so both the SRPC and IPC proxies are built side by side. In addition, NaClBrowser now checks the '--enable-nacl-ipc-proxy' flag to determine which IRT to load. The IPC proxy's name is of the form 'nacl_ipc_irt_*'. BUG=116317 TEST=builds and runs NaCl apps with --enable-nacl-ipc-proxy TBR=bbudge@chromium.org Review URL: https://chromiumcodereview.appspot.com/10831316 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151693 0039d316-1c4b-4281-b951-d872f2087c98
-
tzik@chromium.org authored
usage_file_path can be empty when a FileSystem is accessed after DeleteFileSystem call. BUG= Review URL: https://chromiumcodereview.appspot.com/10832316 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151692 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151691 0039d316-1c4b-4281-b951-d872f2087c98
-
reed@google.com authored
Review URL: https://chromiumcodereview.appspot.com/10829337 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151690 0039d316-1c4b-4281-b951-d872f2087c98
-
xians@chromium.org authored
DeviceMonitorMac detects device changing and forwards the notifications to the system monitor. BUG=137799 Review URL: https://chromiumcodereview.appspot.com/10824162 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151689 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151688 0039d316-1c4b-4281-b951-d872f2087c98
-
yutak@chromium.org authored
TBR=enne@chromium.org BUG=none Review URL: https://chromiumcodereview.appspot.com/10837256 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151687 0039d316-1c4b-4281-b951-d872f2087c98
-
milanb@chromium.org authored
SequencedWorkerPool task that are pushed with the shutdown blocking enum must block shutdown, which means that the task execution is important enough that it has to be executed before going into background. Those tasks are transformed into CriticalTasks. BUG=none Review URL: https://chromiumcodereview.appspot.com/10829318 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151685 0039d316-1c4b-4281-b951-d872f2087c98
-
aousterh@chromium.org authored
Code in content/ should be in the content namespace. TBR=jam BUG=none Review URL: https://chromiumcodereview.appspot.com/10823318 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151684 0039d316-1c4b-4281-b951-d872f2087c98
-
joi@chromium.org authored
This ensures: a) That when g_never_throttle_requests_ is false, only extension requests may be throttled (rather than the inverse); b) That setting the flag applies to all instances of ChromeNetworkDelegate, not just the one it is set on. If we'd had these tests earlier, they would have prevented the bugs below from being introduced. TBR=thakis@chromium.org BUG=141081,141643 Review URL: https://chromiumcodereview.appspot.com/10828284 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151683 0039d316-1c4b-4281-b951-d872f2087c98
-
ivankr@chromium.org authored
BUG=142036 Review URL: https://chromiumcodereview.appspot.com/10836238 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151682 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151681 0039d316-1c4b-4281-b951-d872f2087c98
-
wez@chromium.org authored
- Group member variables more appropriately. - Create the input pipeline as member objects rather than separate objects, to remove the need for pointer checks in various places. TEST=Existing unit-tests. Client plugin continues to work in manual tests. Review URL: https://chromiumcodereview.appspot.com/10831221 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151680 0039d316-1c4b-4281-b951-d872f2087c98
-
yutak@chromium.org authored
TBR=enne@chromium.org BUG=none Review URL: https://chromiumcodereview.appspot.com/10834326 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151679 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151676 0039d316-1c4b-4281-b951-d872f2087c98
-
koz@chromium.org authored
The motivation for this is that we may one day want to make background mode be the default, which this flag currently achieves, but in that case we'd need to respect the user's desire to disable background mode altogether. TEST=Starting chrome with --keep-alive-for-test should display a chrome icon in the system tray unless background mode is disabled from the advanced tab in chrome://settings. Toggling that setting should toggle the presence of the icon. Review URL: https://chromiumcodereview.appspot.com/10831254 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151674 0039d316-1c4b-4281-b951-d872f2087c98
-
phoglund@chromium.org authored
NOTRY=True BUG= Review URL: https://chromiumcodereview.appspot.com/10837235 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151673 0039d316-1c4b-4281-b951-d872f2087c98
-
dmikurube@chromium.org authored
BUG=122119 Review URL: https://chromiumcodereview.appspot.com/10827311 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151672 0039d316-1c4b-4281-b951-d872f2087c98
-
atwilson@chromium.org authored
URLRequestContextGetter requires an IO thread to free itself, so create a fake thread. TBR=mnissler BUG=141123 Review URL: https://chromiumcodereview.appspot.com/10855158 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151671 0039d316-1c4b-4281-b951-d872f2087c98
-
yefim@chromium.org authored
BUG=125307 Review URL: https://chromiumcodereview.appspot.com/10827268 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151670 0039d316-1c4b-4281-b951-d872f2087c98
-
yoichio@chromium.org authored
Currently, this method is same as IsMetroProcess. But whether an application must aware TSF is independent from it is under Metro style. So this method will be changed. BUG=137627 TEST=Trybot Review URL: https://chromiumcodereview.appspot.com/10855072 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151669 0039d316-1c4b-4281-b951-d872f2087c98
-
jennb@chromium.org authored
Completes a TODO added in r149891. BUG=None TEST=open panels and verify favicons look correct Review URL: https://chromiumcodereview.appspot.com/10827259 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151668 0039d316-1c4b-4281-b951-d872f2087c98
-
fischman@chromium.org authored
The explicit values should make it easier to avoid accidentally reusing a previously-used code as obsolete ones are retired. Review URL: https://chromiumcodereview.appspot.com/10824283 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151667 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151666 0039d316-1c4b-4281-b951-d872f2087c98
-
robertshield@chromium.org authored
BUG=129187 TEST=NONE Review URL: https://chromiumcodereview.appspot.com/10836218 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151665 0039d316-1c4b-4281-b951-d872f2087c98
-
tim@chromium.org authored
Cleans up backoff retry override code to use InternalComponentsFactory::Switches rather than global bool hack. Also puts keystore encryption flag atop new mechanism. (TBR sky for new chrome_switch). TBR=sky@chromium.org BUG=142029, 139839 Review URL: https://chromiumcodereview.appspot.com/10837231 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151664 0039d316-1c4b-4281-b951-d872f2087c98
-
ronghuawu@chromium.org authored
- Start gathering ice candidates before user sets local description. - Support for muting individual streams based on SSRC. Review URL: https://chromiumcodereview.appspot.com/10825344 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151663 0039d316-1c4b-4281-b951-d872f2087c98
-
scherkus@chromium.org authored
r150930 set Pipeline::running_ to false when an error is encountered as opposed to keeping the Pipeline running. The end result is that an in-flight Seek() can hit CHECK(running_). We want a no-op in that situation in release mode, not a process crash. BUG=141923 TBR=fischman Review URL: https://chromiumcodereview.appspot.com/10855167 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151662 0039d316-1c4b-4281-b951-d872f2087c98
-
nhiroki@chromium.org authored
BUG=139270 Review URL: https://chromiumcodereview.appspot.com/10830330 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151661 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151660 0039d316-1c4b-4281-b951-d872f2087c98
-
yutak@chromium.org authored
TBR=enne@chromium.org BUG=none Review URL: https://chromiumcodereview.appspot.com/10827345 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151658 0039d316-1c4b-4281-b951-d872f2087c98
-
kochi@chromium.org authored
In Drive V2 API, getting drive application list has a separate API call, which was formally included in account metadata in WAPI. BUG=chromium:127728 TEST=none Review URL: https://chromiumcodereview.appspot.com/10829276 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151657 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
BUG=142727 TBR=yoz@chromium.org Review URL: https://chromiumcodereview.appspot.com/10834325 Patch from Ernest Delgado <ernestd@google.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151656 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151655 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
GDataWapiFeedLoader sould only focus on loading the feeds, without doing the extra step to find an entry. The number of callers of FindEntryByPathAndRunSync() is reduced from 4 to 2. Along the way, make LoadDocumentFeedCallback parameter mandatory for LoadFromServer() and friends. Looking at callers, it's safe to make this mandatory. BUG=141196, 126634 TEST=file manager works as before (loading from the server and from the cache) Review URL: https://chromiumcodereview.appspot.com/10824303 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151654 0039d316-1c4b-4281-b951-d872f2087c98
-