- 16 Apr, 2013 40 commits
-
-
cpu@chromium.org authored
Looks like its breaking blink build. Contact jchaffraix for more info. > Refactor android specific code in AudioManagerBase class. > > Move android specific code into AudioManagerAndroid class. > > Contributed by leozwang@chromium.org (https://chromiumcodereview.appspot.com/14265014/). > > BUG=231468 > > Review URL: https://codereview.chromium.org/14053012 TBR=wjia@chromium.org Review URL: https://codereview.chromium.org/14302003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194407 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
On Macs using AMD Radeon and/or Intel HD Graphics GPUs, the deletion of textures, FBOs, and other OpenGL objects for each frame capture was causing GPU pipeline stalls. This was causing average capture time to be too high; in many cases, not allowing even a 30 FPS rate of capture. With this change, the pipeline stalls have been removed. Confirmed: 1. Visually, using our tab capture/playback tools (several hours of video watching). 2. Via Chrome browser tracing tool. 3. Via Apple's OpenGL Profiler tool (no operations other than glReadPixels and glFlush take more than 1 ms to complete). BUG=223326 TEST=See above; and ran content_unittests. Review URL: https://codereview.chromium.org/13749002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194404 0039d316-1c4b-4281-b951-d872f2087c98
-
felipeg@chromium.org authored
Refactor our SimpleIndex file format and serialization to use Pickle instead of the previously buggy way of writing uninitialized structs and ints into the file. BUG=230772 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=194347 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=194387 Review URL: https://codereview.chromium.org/14263005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194403 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
BUG=151051,114697 TBR=cdn Review URL: https://codereview.chromium.org/14234023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194401 0039d316-1c4b-4281-b951-d872f2087c98
-
sbc@chromium.org authored
Somehow these two were previously overlooked. BUG=169509 Review URL: https://codereview.chromium.org/14139007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194400 0039d316-1c4b-4281-b951-d872f2087c98
-
gab@chromium.org authored
Resulted in a warning message on properly formatted input as the key IS expected to be empty when the map ends (not the other way around)... Typical file being read by this code: https://code.google.com/p/chromium/codesearch#chromium/src/chrome/test/data/firefox2_profile/history.dat&q=history.dat&sq=package:chromium&type=cs BUG=219419 Review URL: https://codereview.chromium.org/14238014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194399 0039d316-1c4b-4281-b951-d872f2087c98
-
backer@chromium.org authored
BUG=231945 Review URL: https://codereview.chromium.org/13871015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194398 0039d316-1c4b-4281-b951-d872f2087c98
-
grt@chromium.org authored
BUG=224911 TBR=cmp@chromium.org Review URL: https://codereview.chromium.org/14301002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194397 0039d316-1c4b-4281-b951-d872f2087c98
-
binji@chromium.org authored
Most nacl_io calls are made off-main-thread, but mount() is not necessarily. Mounting an html5fs mount requires an asynchronous call to PPAPI; until that callback returned, all further calls to that mount would fail. The fix here does the following: * If the mount() call is made on the main thread, make an asynchronous call to open the filesystem, but block all further calls until the filesystem is open. * If the mount() call is made off-main-thread, the filesystem open call blocks until it is finished. BUG=230410 R=noelallen@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/13951014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194396 0039d316-1c4b-4281-b951-d872f2087c98
-
bruening@google.com authored
BUG=231969 TBR=gavinp@chromium.org TEST=waterfall.sh Review URL: https://codereview.chromium.org/13856008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194395 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
Things like swap are concepts of an OutputSurface, not a context. Moving the callbacks to OutputSurface will also reduce cc's knowledge of the context guts and let us swap out the GL interface. Review URL: https://codereview.chromium.org/12545018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194394 0039d316-1c4b-4281-b951-d872f2087c98
-
felipeg@chromium.org authored
> Refactor our SimpleIndex file format and serialization to use Pickle instead of the previously buggy way of writing uninitialized structs and ints into the file. > > BUG=230772 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=194347 > > Review URL: https://codereview.chromium.org/14263005 TBR=felipeg@chromium.org Review URL: https://codereview.chromium.org/14300002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194393 0039d316-1c4b-4281-b951-d872f2087c98
-
caitkp@google.com authored
BUG=230920 Review URL: https://codereview.chromium.org/13932025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194392 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194391 0039d316-1c4b-4281-b951-d872f2087c98
-
tonyg@chromium.org authored
This is to pick up a fix which solves a race condition in saving new recordings. BUG=None TEST=None Review URL: https://codereview.chromium.org/14053013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194390 0039d316-1c4b-4281-b951-d872f2087c98
-
caitkp@google.com authored
BUG=230920 Review URL: https://codereview.chromium.org/14121012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194389 0039d316-1c4b-4281-b951-d872f2087c98
-
scottmg@chromium.org authored
Status bubble does it own animation rather than relying on the framework, so pass the inhibition of animation through DesktopNativeWidgetAura (mirroring NativeWidgetAura) and make opacity setting work too. R=ben@chromium.org BUG=229453 Review URL: https://codereview.chromium.org/14121011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194388 0039d316-1c4b-4281-b951-d872f2087c98
-
felipeg@chromium.org authored
Refactor our SimpleIndex file format and serialization to use Pickle instead of the previously buggy way of writing uninitialized structs and ints into the file. BUG=230772 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=194347 Review URL: https://codereview.chromium.org/14263005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194387 0039d316-1c4b-4281-b951-d872f2087c98
-
binji@chromium.org authored
BUG=229470 R=sbc@chromium.org Review URL: https://codereview.chromium.org/14210005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194385 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
BUG=none Review URL: https://codereview.chromium.org/13925020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194381 0039d316-1c4b-4281-b951-d872f2087c98
-
rtoy@google.com authored
Set use_openmax_dl_fft=1 to enable WebAudio on Android. This should not be committed until https://codereview.chromium.org/12457043/ has landed. BUG= Review URL: https://codereview.chromium.org/14047013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194378 0039d316-1c4b-4281-b951-d872f2087c98
-
cjhopman@chromium.org authored
This adds a function md5_check.CallAndRecordIfStale that makes the common (and currently only) use of Md5Checker much simpler (i.e just call this function). All the users of md5_check are updated to use this function, and everything else in md5_check is no longer part of the public API. Also, adds tests for the md5_check module. These are only run manually currently. BUG=158821 Review URL: https://codereview.chromium.org/14263006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194377 0039d316-1c4b-4281-b951-d872f2087c98
-
alexeypa@chromium.org authored
|RdpClientWindow| now installs WH_CBT hook to listen to window activations and closes any windows activated on the UI thread. This allows |RdpClientWindow| to cancel modal UI dialogs popped up by the RDP control. BUG=137696 Review URL: https://codereview.chromium.org/14261008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194376 0039d316-1c4b-4281-b951-d872f2087c98
-
kmadhusu@chromium.org authored
BUG=229839 TEST=none Review URL: https://codereview.chromium.org/14080012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194375 0039d316-1c4b-4281-b951-d872f2087c98
-
wjia@chromium.org authored
On Android, when WebRTC tab goes background, we need suspend video frame delivery to remote party. When WebRTC tab becomes foreground, VideoCaptureImpl needs to resume delivering captured video frames. BUG=230962 Review URL: https://codereview.chromium.org/14175015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194374 0039d316-1c4b-4281-b951-d872f2087c98
-
cpu@chromium.org authored
It broke linux compile http://build.chromium.org/p/chromium.chrome/buildstatus?builder=Google%20Chrome%20Linux&number=29552 > Refactor our SimpleIndex file format and serialization to use Pickle instead of the previously buggy way of writing uninitialized structs and ints into the file. > > BUG=230772 > > Review URL: https://codereview.chromium.org/14263005 TBR=felipeg@chromium.org Review URL: https://codereview.chromium.org/14295012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194373 0039d316-1c4b-4281-b951-d872f2087c98
-
wjia@chromium.org authored
Move android specific code into AudioManagerAndroid class. Contributed by leozwang@chromium.org (https://chromiumcodereview.appspot.com/14265014/). BUG=231468 Review URL: https://codereview.chromium.org/14053012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194371 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
BUG=none TEST=none Review URL: https://codereview.chromium.org/14251022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194370 0039d316-1c4b-4281-b951-d872f2087c98
-
antrim@chromium.org authored
BUG=229762 Review URL: https://codereview.chromium.org/14028005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194368 0039d316-1c4b-4281-b951-d872f2087c98
-
hamaji@chromium.org authored
BUG=N/A TEST=./out/Release/dump_file_system -l /tmp/hamaji/test-profile Review URL: https://codereview.chromium.org/14294005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194367 0039d316-1c4b-4281-b951-d872f2087c98
-
qinmin@chromium.org authored
The android download manager does not support authentication. Therefore, use chrome path for download initiated by context menu. gerrit change: 35490 BUG=159687 Review URL: https://codereview.chromium.org/13859009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194366 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
BUG=none Review URL: https://codereview.chromium.org/13845017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194365 0039d316-1c4b-4281-b951-d872f2087c98
-
dmichael@chromium.org authored
This removes the last usage of WaitForResult and force_async_, so removes them as well. BUG= Review URL: https://codereview.chromium.org/14139012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194364 0039d316-1c4b-4281-b951-d872f2087c98
-
mpearson@chromium.org authored
Adds new histogram to histograms.xml This histogram was added in https://codereview.chromium.org/13730016/ BUG=219218 Review URL: https://codereview.chromium.org/14270005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194363 0039d316-1c4b-4281-b951-d872f2087c98
-
flackr@chromium.org authored
Failing browser_tests on linux chromiumos. > Part of multiprofile implementation. > > Created method for obtaining signin profile. > Signin profile used instead of "DefaultProfile" during login phase. > > R=nkostylev@chromium.org > TBR=brettw > > Review URL: https://codereview.chromium.org/13633003 TBR=nkostylev@chromium.org Review URL: https://codereview.chromium.org/14066013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194362 0039d316-1c4b-4281-b951-d872f2087c98
-
atwilson@chromium.org authored
This will help track down what's going on in crbug.com/164617 - is it a double-free of the BackgroundContents, or an unexpected free of the WebContents? This is a re-land of r194345 BUG=164617 TBR=avi@chromium.org Review URL: https://codereview.chromium.org/13871010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194361 0039d316-1c4b-4281-b951-d872f2087c98
-
nona@chromium.org authored
I introduced Input Tools and Google Japanese Input as a experiment, but we may need to remove them. This CL removes them from active_input_methods if they are removed. BUG=None TEST=Manually checked by removing component extension IME. Review URL: https://codereview.chromium.org/14027007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194360 0039d316-1c4b-4281-b951-d872f2087c98
-
szym@chromium.org authored
TEST=waterfall Review URL: https://codereview.chromium.org/13890003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194359 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
BUG=None Review URL: https://codereview.chromium.org/13929014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194358 0039d316-1c4b-4281-b951-d872f2087c98
-
wjmaclean@chromium.org authored
BUG=228942 Review URL: https://codereview.chromium.org/13998016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194357 0039d316-1c4b-4281-b951-d872f2087c98
-