- 31 Jan, 2012 40 commits
-
-
dalecurtis@google.com authored
Does the following: - Removes race between autoplay and explicit .play(). - Removes race between seeked and .play(). - Adds logging for several other failure type events. - Moves the events.join() code into Python so better errors can be reported. - Instead of opening a new tab for each video in the matrix, reuses the same tab for each playback. Ensures abort and emptied events fire on src switch. Reusing the same tab was necessary to prevent the video from hanging on the Linux bot, as a nice bonus it shaves seconds off the runtime. BUG=111603 TEST=Ran on Linux bot. Review URL: https://chromiumcodereview.appspot.com/9233046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119985 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Move common file path related methods between chrome & content to file_util. I reduced the 4 methods into 3 by only having one GetUniquePathNumber which takes an optional suffix. BUG=98716 Review URL: https://chromiumcodereview.appspot.com/9316004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119984 0039d316-1c4b-4281-b951-d872f2087c98
-
dennisjeffrey@chromium.org authored
This change causes asyncore.loop() to internally use poll() instead of select(), which may prevent the "bad file descriptor" exception from being thrown on the Chrome Endure tests. Also enhanced an assertion error message in perf_endure.py to give more context if the assertion is violated. BUG=None TEST=None Review URL: https://chromiumcodereview.appspot.com/9309019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119983 0039d316-1c4b-4281-b951-d872f2087c98
-
bradchen@google.com authored
TBR=acolwell BUG=112200 TEST=TSAN bots Review URL: https://chromiumcodereview.appspot.com/9317015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119982 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
This will get more runs on the ExtensionUnpacker tests to get more directories. BUG=108724 TBR=yoz@chromium.org Review URL: https://chromiumcodereview.appspot.com/9315016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119981 0039d316-1c4b-4281-b951-d872f2087c98
-
tbarzic@chromium.org authored
BUG=None TEST=trybots Review URL: http://codereview.chromium.org/9019002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119980 0039d316-1c4b-4281-b951-d872f2087c98
-
apatrick@chromium.org authored
This is to conserve video memory for hidden tabs that are not expected to be needed in the near term. Review URL: https://chromiumcodereview.appspot.com/9303009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119979 0039d316-1c4b-4281-b951-d872f2087c98
-
vivianz@chromium.org authored
BUG=109663, 95586 TEST=None Review URL: http://codereview.chromium.org/9114056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119978 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
In accelerated compositing mode we can't start rendering until the native window (HWND/gtk widget) are created on Windows and GTK without aura. For most render_widgets the code today is racy, but for window.open() and similar creation paths this is a race that we pretty much always lose. This defers the first DoDeferredUpdate on a render_widget until its host_window_ is available. Also defers querying for GL_CHROMIUM_supports_swapbuffers_callback extension until the first draw, since the context isn't ready until the host window is available. BUG=106815 TEST=start with --force-compositing-mode and --show-fps-counter, load up a page that uses window.open() to open a popup, and confirm that the popup is in compositing mode Review URL: http://codereview.chromium.org/9225050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119977 0039d316-1c4b-4281-b951-d872f2087c98
-
ben@chromium.org authored
Adds two new observer methods to allow code to be notified when a Window is added/removed from a RootWindow. This allows hierarchy-specific cleanup code to execute when a Window is removed rather than when it is destroyed, necessary for multiple root windows. http://crbug.com/112131 TEST=see unittests Review URL: https://chromiumcodereview.appspot.com/9315015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119976 0039d316-1c4b-4281-b951-d872f2087c98
-
bradchen@google.com authored
BUG=51716 TEST=valgrind mac bots Review URL: https://chromiumcodereview.appspot.com/9314011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119975 0039d316-1c4b-4281-b951-d872f2087c98
-
dtu@chromium.org authored
Since most calls to WaitUntil use lambdas, you commonly see a lot of: DEBUG WaitUntil(<function <lambda> at 0x79b984c4>) still waiting. Expecting None. Last returned False. With this change it is instead: DEBUG WaitUntil(pyauto.py:281 self.WaitUntil(lambda: _AreOrigPidsDead(orig_pids))) still waiting. Expecting True. Last returned False. Also reduce the frequency to once every 5 seconds. BUG=None. TEST=Run any PyAuto test that uses WaitUntil(). Review URL: http://codereview.chromium.org/9104022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119974 0039d316-1c4b-4281-b951-d872f2087c98
-
acolwell@chromium.org authored
BUG=109875 TEST=PipelineIntegrationTest.* Review URL: http://codereview.chromium.org/9309004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119973 0039d316-1c4b-4281-b951-d872f2087c98
-
atwilson@chromium.org authored
Removing some of the prematurely-forked sync settings code, to make it easier to perform refactoring of the sync APIs. BUG=111859 TEST=Make sure sync signin and settings still work. Review URL: http://codereview.chromium.org/9104028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119972 0039d316-1c4b-4281-b951-d872f2087c98
-
rkc@chromium.org authored
Everytime a user clicks on the Feedback menu item or presses ctrl+alt+i on ChromeOS, record the exact time of that happening and send it in the feedback report the user submits. R=zelidrag@chromium.org,adlr@chromium.org BUG=chromium-os:25678 TEST=Tested with sending several reports invoked both by the shortcut and the menu item. Review URL: http://codereview.chromium.org/9104030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119971 0039d316-1c4b-4281-b951-d872f2087c98
-
bradchen@google.com authored
TBR=glider BUG=105580 TEST= Review URL: https://chromiumcodereview.appspot.com/9315014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119970 0039d316-1c4b-4281-b951-d872f2087c98
-
robertshield@chromium.org authored
BUG=NONE TEST=NONE Review URL: http://codereview.chromium.org/9225051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119969 0039d316-1c4b-4281-b951-d872f2087c98
-
kevers@chromium.org authored
BUG=chromium:102139 TEST= Review URL: http://codereview.chromium.org/9312001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119968 0039d316-1c4b-4281-b951-d872f2087c98
-
asvitkine@chromium.org authored
Remove unnecessary |text16| temporary and change the code to not to compute the width of each word twice. BUG=none TEST=Text in about dialog should look the same as before. Review URL: http://codereview.chromium.org/9232055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119967 0039d316-1c4b-4281-b951-d872f2087c98
-
groby@chromium.org authored
CID=102975 TBR=ahendrickson@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/9303013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119966 0039d316-1c4b-4281-b951-d872f2087c98
-
scheib@chromium.org authored
BUG=111860 TEST=ppapi/examples/mouse_lock/mouse_lock.html, see 112025 for steps. Review URL: http://codereview.chromium.org/9302021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119965 0039d316-1c4b-4281-b951-d872f2087c98
-
asharif@chromium.org authored
This supresses the -Wmaybe-uninitialized warning when compiling with gcc-4.6.0. BUG=none TEST=trybot. Review URL: http://codereview.chromium.org/9104024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119963 0039d316-1c4b-4281-b951-d872f2087c98
-
caryclark@chromium.org authored
Skia draws Mac user elements by creating a CoreGraphics context that mirrors Skia's SkCanvas' context. CoreGraphics does not consider a newly created path to be empty. Explicitly set it to empty so the subsequent drawing is clipped out. BUG: 111642 TEST: http://jsfiddle.net/kenjibaheux/UN3Dt/3/ Review URL: http://codereview.chromium.org/9104010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119962 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
The non-GTK path was previously just using Cairo's default settings for antialiasing, subpixel order, and hinting. This change hardcodes the settings to match those currently loaded from GtkSettings on non-Aura Chrome OS. BUG=111395 TEST=manual inspection Review URL: http://codereview.chromium.org/9296042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119961 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119960 0039d316-1c4b-4281-b951-d872f2087c98
-
scottmg@google.com authored
r119942: Disable ULDI on reference to libvpx (vs2010) BUG=97534 TBR=scherkus Review URL: https://chromiumcodereview.appspot.com/9317010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119958 0039d316-1c4b-4281-b951-d872f2087c98
-
jsbell@chromium.org authored
BUG=112016 TEST=third_party/WebKit/LayoutTests/storage/indexeddb/key-type-array.html Review URL: http://codereview.chromium.org/9104026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119956 0039d316-1c4b-4281-b951-d872f2087c98
-
ben@chromium.org authored
Makes GetRootWindow() public on Window so we can begin to convert uses of RootWindow::GetInstance(). http://crbug.com/112131 TEST=none Review URL: https://chromiumcodereview.appspot.com/9318002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119955 0039d316-1c4b-4281-b951-d872f2087c98
-
ben@chromium.org authored
BUG=none TEST=existing unittests Review URL: https://chromiumcodereview.appspot.com/9315004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119954 0039d316-1c4b-4281-b951-d872f2087c98
-
jvoung@google.com authored
Undoes some changes done to allow PNaCl to read its own files from an extension: http://codereview.chromium.org/8974020/ R=bbudge@chromium.org,sehr@google.com,jorgelo@google.com BUG=108131 TEST= extension_mime_handler test Review URL: http://codereview.chromium.org/9159037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119953 0039d316-1c4b-4281-b951-d872f2087c98
-
tedvessenes@gmail.com authored
R=gene@chromium.org BUG=108171 TEST= Review URL: http://codereview.chromium.org/9230002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119952 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119951 0039d316-1c4b-4281-b951-d872f2087c98
-
scottmg@google.com authored
During gclient runhooks, update LASTCHANGE so that it will be updated at least as often as runhooks is run (i.e. for every sync). LASTCHANGE moved to build/util rather than SHARED_INTERMEDIATE_DIR because that directory isn't known to runhooks. BUG=111731 Review URL: https://chromiumcodereview.appspot.com/9169105 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119950 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
Add duration to show/hide animation (lock screen has longer animation) Window can now specify in which visibility change phrase it wants to animate (login screen and lock screen should animate only when hiding) BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/9233044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119949 0039d316-1c4b-4281-b951-d872f2087c98
-
achuith@chromium.org authored
* Show status area volume control when the command line has --show-volume-status * Create AudioHandler::VolumeObserver class and helpers so VolumeMenuButton and VolumeControlView can observe volume changes from key presses. * Move GetAudioHandler() common code in VolumeMenuButton and SystemKeyEventListener that returns the AudioHandler singleton only if the mixer has finished initializing to AudioHandler::GetInitialized(). * Handle mute in VolumeMenuButton correctly. BUG=chromium-os:22080 TEST=Should see the volume control in the status area on builds with USE flag is_desktop set. The volume control icon and menu should be in sync with volume key button controls. Review URL: https://chromiumcodereview.appspot.com/9169033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119948 0039d316-1c4b-4281-b951-d872f2087c98
-
bradchen@google.com authored
TBR=glider BUG=105580 TEST=mem FYI bots Review URL: https://chromiumcodereview.appspot.com/9307005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119947 0039d316-1c4b-4281-b951-d872f2087c98
-
csilv@chromium.org authored
- Fix font-family property for link-buttons. - Change to rgb() colors for per webui style guidelines. BUG=100885 Review URL: https://chromiumcodereview.appspot.com/9310003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119944 0039d316-1c4b-4281-b951-d872f2087c98
-
dhollowa@chromium.org authored
Fixes link issues on Mac/AuraShell.app with WorkspaceController. implemented. BUG=None TEST=Compile on Mac/Aura. R=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/9159048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119941 0039d316-1c4b-4281-b951-d872f2087c98
-
robertshield@chromium.org authored
Revert "Revert 119841 - Implementation of GCAPI reactivation." This reverts commit b0eebb40. BUG=NONE TEST=NONE Review URL: https://chromiumcodereview.appspot.com/9302035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119940 0039d316-1c4b-4281-b951-d872f2087c98
-
kerz@chromium.org authored
http://src.chromium.org/viewvc/chrome?view=rev&revision=119924 BUG= TEST= TBR=cmp@chromium.org Review URL: https://chromiumcodereview.appspot.com/9307008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119939 0039d316-1c4b-4281-b951-d872f2087c98
-