- 26 Jul, 2012 40 commits
-
-
koz@chromium.org authored
runtime.onSuspendCanceled() is sent after runtime.onSuspend() to indicate that the extension / app will not be suspended after all. BUG=136469 Review URL: https://chromiumcodereview.appspot.com/10804020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148490 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@google.com authored
mac-release-10.6/intl1/times: http://build.chromium.org/f/chromium/perf/mac-release-10.6/intl1/report.html?history=250&rev=148450 TBR=cmp Review URL: https://chromiumcodereview.appspot.com/10830030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148489 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148488 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@chromium.org authored
functions. R=eroman, jar, sky Review URL: https://chromiumcodereview.appspot.com/10827026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148487 0039d316-1c4b-4281-b951-d872f2087c98
-
palmer@chromium.org authored
Fix a typo in the Chrome string; unify the language across Chrome and Chromium, and say what error specifically people should fix (their broken clock, not just "any error" or "the error"). Review URL: https://chromiumcodereview.appspot.com/10818033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148486 0039d316-1c4b-4281-b951-d872f2087c98
-
alexyu@google.com authored
BUG=138959 TEST= Review URL: https://chromiumcodereview.appspot.com/10821014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148485 0039d316-1c4b-4281-b951-d872f2087c98
-
jschuh@chromium.org authored
BUG=137264 TBR=viettrungluu Review URL: https://chromiumcodereview.appspot.com/10824029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148484 0039d316-1c4b-4281-b951-d872f2087c98
-
dalecurtis@chromium.org authored
Adds two new methods: AlignedAlloc and AlignedFree for creating and destroying dynamic aligned allocations respectively. Also adds a helper class, ScopedPtrAlignedFree, for use with scoped_ptr_malloc. AlignedAlloc uses posix_memalign for OS X (now that we're targeting 10.6), Linux and _aligned_alloc() on Windows. Android and NaCl use memalign() since they do not expose posix_memalign() and memalign() is safe to use with free() on those platforms. Also hacks around a bug in Visual C++ where __alignof will sometimes return zero: http://connect.microsoft.com/VisualStudio/feedback/details/682695/c-alignof-fails-to-properly-evalute-alignment-of-dependent-types BUG=none TEST=base_unittests + new test, trybots. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=147988 Review URL: https://chromiumcodereview.appspot.com/10796020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148483 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
if Pygments isn't installed, and escape HTML (especially obvious with generics) when syntax highlighting is turned off. Review URL: https://chromiumcodereview.appspot.com/10833024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148482 0039d316-1c4b-4281-b951-d872f2087c98
-
dtu@chromium.org authored
Add droppedFrameCount, totalPaintTime, and totalRasterizeTime to chrome.gpuBenchmarking.renderingStats(). BUG=chromium:130790, chromium:137756 TEST=Launch Chrome with --enable-gpu-benchmarking and per-tile painting, open a tab to a composited page, and type chrome.gpuBenchmarking.renderingStats(). All the above fields should be present. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=148413 Review URL: https://chromiumcodereview.appspot.com/10823023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148481 0039d316-1c4b-4281-b951-d872f2087c98
-
hebert.christopherj@chromium.org authored
Before, the compiler raised an exception when a function was used as a property, which happens whenever a function is passed as a parameter. The solution presented here is to create a bool has_<function_name> to allow the hand-written C++ code to know whether or not the function was passed in. BUG=138850 TEST=function_as_parameter Review URL: https://chromiumcodereview.appspot.com/10824002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148480 0039d316-1c4b-4281-b951-d872f2087c98
-
fischman@chromium.org authored
BUG=136962 TEST=this runs through most of the input file displaying lots of pretty frames before segfaulting in the SEC-OMX library: DISPLAY=:0 ./Debug/omx_video_decode_accelerator_unittest --gtest_filter=DecodeVariations/VideoDecodeAcceleratorTest.TestSimpleDecode/0 --test_video_data='test-25fps.vp8:320:240:250:250:50:175:11' Review URL: https://chromiumcodereview.appspot.com/10828022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148479 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
ToplevelWindowEventFilter: * Use location in root window for drag_location DocInfo::GetLocalProcessWindowAtPoint * Use ScreenPositionClient to convert a point in screen to window * Use correct root window at the position. MultiWindowResizer * Use ScreenPositionClient to convert a point in screen to window. * show_bounds_ should be screen coordinates. I also renamed {screen|parent}_{location|position| to {location|position}_in_{screen|parent} to be more explicit and consistent with the rest of the code. I'll work on the test separately as we discussed offline. BUG=138997,138868 TEST=manual Review URL: https://chromiumcodereview.appspot.com/10827022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148478 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
BUG=131282 TEST=none Review URL: https://chromiumcodereview.appspot.com/10831019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148477 0039d316-1c4b-4281-b951-d872f2087c98
-
khorimoto@chromium.org authored
CID=103708 BUG= TEST= TBR=tommi Review URL: https://chromiumcodereview.appspot.com/10834013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148476 0039d316-1c4b-4281-b951-d872f2087c98
-
tbreisacher@chromium.org authored
CID=104393 BUG= TEST= TBR=mihaip@chromium.org Review URL: https://chromiumcodereview.appspot.com/10828021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148475 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
Now that http://crbug.com/115123 is fixed, we can remove the views implementation, and along the way we can remove the ShowAboutChromeDialog function from BrowseWindow and the platform-specific overridden functions. BUG=138724 R=pkasting@chromium.org TBR=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/10800096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148474 0039d316-1c4b-4281-b951-d872f2087c98
-
annacc@chromium.org authored
Clearing the stream_parser_map_ (which represents the list of source buffers) creates an inconsistent state where source buffers should still be available to WebKit (JavaScript) but they have been removed internally. Source buffers should only be removed when RemoveId() is called or upon destruction. This change was originally committed as http://src.chromium.org/viewvc/chrome?view=rev&revision=148149 (Patch Set 1) and then reverted because it exposed a memory leak. Turns out the StreamParser was holding on to a reference to the ChunkDemuxer until after the initialization in order to ensure the init callback got called. So for tests that never append an initialization segment, the StreamParser reference prevented the ChunkDemuxer from being deconstructed, causing the memory leak. Before this patch, Shutdown() would remove all the StreamParsers so this wasn't a problem. A subsequent patch will not allow StreamParser to hang on to its ChunkDemuxer reference. This is ok because if ChunkDemuxer gets deconstructed, the callback is no longer relevant. For reference, the memory leak looks like this: http://build.chromium.org/p/chromium.memory.fyi/builders/Chromium%20Mac%20%28valgrind%29%281%29/builds/11523/steps/memory%20test%3A%20media/logs/stdio BUG=138578 , WK88949 TEST=http/tests/media/media-source/video-media-source-add-and-remove-ids.html, ChunkDemuxerTest.TestEndOfStreamWithNoAppends Review URL: https://chromiumcodereview.appspot.com/10822024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148473 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
named. BUG=none TEST=none R=oshima@chromium.org Review URL: https://chromiumcodereview.appspot.com/10828026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148471 0039d316-1c4b-4281-b951-d872f2087c98
-
bsy@google.com authored
Tested this by running Duke Nukem w/i NaClBox with http://codereview.chromium.org/10823018/ patched into native_client, using the command line: bash -c 'ulimit -v 1000000; /mm/bsy/chromium/chromium64.git0/src/out/Release/chrome --user-data-dir=/tmp/udd' to verify that the crash log shows up. BUG= http://code.google.com/p/nativeclient/issues/detail?id=2776 TEST= Manual. Review URL: https://chromiumcodereview.appspot.com/10823019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148470 0039d316-1c4b-4281-b951-d872f2087c98
-
orenb@chromium.org authored
CID_COUNT=3 CID=104154,104155,104156 BUG= TEST= TBR=jeremy Review URL: https://chromiumcodereview.appspot.com/10829024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148469 0039d316-1c4b-4281-b951-d872f2087c98
-
fischman@chromium.org authored
BUG=139061 Review URL: https://chromiumcodereview.appspot.com/10834019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148468 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148467 0039d316-1c4b-4281-b951-d872f2087c98
-
atwilson@chromium.org authored
TBR=tomhudson@chromium.org BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10825021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148466 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@chromium.org authored
When trying to re-login, we might be at the user pods screen. R=ivankr@chromium.org BUG=None TEST=chromeos_login.ChromeosLogin.testLogoutWithNoWindows NOTRY=true Review URL: https://chromiumcodereview.appspot.com/10820021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148465 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Move WaitForLoadStop from ui_test_utils to browser_test_utils so that it can be reused in content_browsertests. BUG=90448 TBR=viettrungluu Review URL: https://chromiumcodereview.appspot.com/10823029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148463 0039d316-1c4b-4281-b951-d872f2087c98
-
khorimoto@chromium.org authored
BUG= TEST= CID=102400 TBR=jamesr Review URL: https://chromiumcodereview.appspot.com/10829028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148462 0039d316-1c4b-4281-b951-d872f2087c98
-
markusheintz@chromium.org authored
(Views only) Replace the content settings icons and the dummy icons on the Website Settings UI with the set of new content settings icons. BUG=113688 TEST=none Review URL: https://chromiumcodereview.appspot.com/10828002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148461 0039d316-1c4b-4281-b951-d872f2087c98
-
ilevy@chromium.org authored
- moving check to bb_run_tests so VM builders don't bother running it R=yfriedman@chromium.org BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10832020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148460 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148459 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremya@chromium.org authored
R=rsesek@chromium.org Review URL: https://chromiumcodereview.appspot.com/10823008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148458 0039d316-1c4b-4281-b951-d872f2087c98
-
orenb@chromium.org authored
CID_COUNT=1 CID=103693 BUG= TEST= TBR=rvargas Review URL: https://chromiumcodereview.appspot.com/10828025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148457 0039d316-1c4b-4281-b951-d872f2087c98
-
jasneet@chromium.org authored
chrome/test/data/plugin moved to content/test/data/plugin BUG=139053 TEST=NONE NOTRY=true Review URL: https://chromiumcodereview.appspot.com/10833023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148456 0039d316-1c4b-4281-b951-d872f2087c98
-
binji@chromium.org authored
build_sdk.py: Also added --libraries to build only libraries. generate_make.py: Added HEADERS tag and HEADERS_DEST to .dsc file to allow a library to specify public headers and a place to install them. BUG=none TEST=none R=noelallen@chromium.org NOTRY=true Review URL: https://chromiumcodereview.appspot.com/10823016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148455 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@chromium.org authored
This moves CursorManager into ash/wm/ and makes it an implementation of a new CursorClient interface. It's really an implementation detail of ash. Then create a desktop version of this interface. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10692170 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148454 0039d316-1c4b-4281-b951-d872f2087c98
-
strobe@google.com authored
BUG=132351 TEST=AesDecryptorTest, plus manual playback in browser Review URL: https://chromiumcodereview.appspot.com/10651006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148453 0039d316-1c4b-4281-b951-d872f2087c98
-
fischman@chromium.org authored
with per-platform default settings (currently off for all but cros). This is in preparation for turning on HW decode by default one platform at a time. BUG=133827,133828 Review URL: https://chromiumcodereview.appspot.com/10805070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148452 0039d316-1c4b-4281-b951-d872f2087c98
-
sail@chromium.org authored
Bubble windows sometimes had drawing artifacts. It looks like this was caused by the blur filter we added to those windows. This CL removes the blur filter (partial revert of r134795 and r147628). BUG=138761 TEST=Ran and verified that bubble windows looked ok on external display. Review URL: https://chromiumcodereview.appspot.com/10833009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148451 0039d316-1c4b-4281-b951-d872f2087c98
-
garykac@chromium.org authored
BUG=139069 TEST=None Review URL: https://chromiumcodereview.appspot.com/10820022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148450 0039d316-1c4b-4281-b951-d872f2087c98
-
chrisphan@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148449 0039d316-1c4b-4281-b951-d872f2087c98
-