summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add ash SessionStateDelegatebartfab@google.com2013-04-1750-344/+553
| | | | | | | | | | | | | | | | | | | | This CL refactors the ShellDelegate by adding a SessionStateDelegate to which methods dealing with the session state can be moved. This cleans up the huge ShellDelegate interface and paves the way for further Chrome OS multiprofile work which will need to add several new methods related to the session state. This CL is only the first step. Several other methods should also move to SessionStateDelegate but I do not want to overburden a single CL. BUG=None TEST=Manual and browser/unit tests TBR=sky (for c/b/idle_chromeos.cc and c/chrome_browser_ui.gypi) Review URL: https://codereview.chromium.org/14295008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194578 0039d316-1c4b-4281-b951-d872f2087c98
* [SPDY] Fix memory leak introduced by r194564akalin@chromium.org2013-04-171-1/+10
| | | | | | | | | | | | The leak is due to too much passing around of an IOBuffer via a raw pointer. BUG=232345 TBR=rch@chromium.org Review URL: https://codereview.chromium.org/14087008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194577 0039d316-1c4b-4281-b951-d872f2087c98
* [Android WebView] Never turn off viewport and fixed layoutmnaganov@chromium.org2013-04-1717-115/+13
| | | | | | | | | | | This is to avoid skipping "meta viewport" tag processing. For controlling wide viewport-related behavior, a corresponding WebSetting has been added into Blink. Review URL: https://codereview.chromium.org/14234002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194576 0039d316-1c4b-4281-b951-d872f2087c98
* Resolves "Huge increase in audio latency on Windows following r192046".henrika@chromium.org2013-04-171-8/+17
| | | | | | | | | BUG=227043 TEST=content_unittests and mish audio tests in Chrome Review URL: https://codereview.chromium.org/14244005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194573 0039d316-1c4b-4281-b951-d872f2087c98
* Add browser test for new user CrOS login flowglotov@chromium.org2013-04-1712-31/+347
| | | | | | | | | BUG=178009 TEST=this test Review URL: https://codereview.chromium.org/13542003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194572 0039d316-1c4b-4281-b951-d872f2087c98
* Disable ExtensionCrashRecoveryTest.ReloadTabsWithBackgroundPage on Windowskjellander@google.com2013-04-171-2/+3
| | | | | | | | | | | | | After the Blink roll 148494:148530 that happened in r194534 this test started failing. TEST=sanity compilation locally on Linux. BUG=232340 TBR=yoz@chromium.org Review URL: https://codereview.chromium.org/14063013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194571 0039d316-1c4b-4281-b951-d872f2087c98
* Sync FileSystem: Add default mock expectation for ↵tzik@chromium.org2013-04-173-20/+20
| | | | | | | | | | MockDriveService::GetChangeList BUG=173339 Review URL: https://codereview.chromium.org/14322009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194570 0039d316-1c4b-4281-b951-d872f2087c98
* Implement ComposedCallback with three arguments and the second one is ↵hidehiko@chromium.org2013-04-171-0/+11
| | | | | | | | | | | | | scoped_ptr. Just add new pattern. It will be used to implement DriveFileStreamReader. BUG=127129 TEST=Ran unit_tests. Review URL: https://codereview.chromium.org/14235017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194569 0039d316-1c4b-4281-b951-d872f2087c98
* Disable PlatformAppBrowserTest.WindowsApiProperties test on Mackjellander@google.com2013-04-171-1/+2
| | | | | | | | | | | | | Disabling this test again as it has shown to keep being flaky even after the fix in r193825. BUG=232330,229700 TEST=sanity compile on Linux. TBR=asargent@chromium.org Review URL: https://codereview.chromium.org/13996011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194568 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 194565 "Complete (but inefficient) implementation of the ..."kinuko@chromium.org2013-04-178-1396/+3
| | | | | | | | | | | | | | | | | | | | | | | | > Complete (but inefficient) implementation of the image retargetting method. > > This CL contains: > 1. Convolution of arbitrary channel with arbitrary kernel (convolver*). > 2. Gaussian gradient magnitude implementation. > 3. Image profile (X and Y projections) computations. > 4. Otsu-like thresholding of profiles. > 5. Image decimation. > 6. The main routine which binds it all together. > > Note: 1 and 2 do work, but remain main sources of suckiness due to performance > problems. I actively work on this. Still, I'd love to get the current state in > to establish a baseline and for viewing pleasure of those who are interested. > > BUG=155269 > > Review URL: https://codereview.chromium.org/13947013 TBR=motek@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194567 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress races on _M_refcount between _M_dispose() and _M_is_leaked().glider@chromium.org2013-04-171-0/+1
| | | | | | | | BUG=181502 Review URL: https://codereview.chromium.org/14322012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194566 0039d316-1c4b-4281-b951-d872f2087c98
* Complete (but inefficient) implementation of the image retargetting method.motek@chromium.org2013-04-178-3/+1396
| | | | | | | | | | | | | | | | | | | | This CL contains: 1. Convolution of arbitrary channel with arbitrary kernel (convolver*). 2. Gaussian gradient magnitude implementation. 3. Image profile (X and Y projections) computations. 4. Otsu-like thresholding of profiles. 5. Image decimation. 6. The main routine which binds it all together. Note: 1 and 2 do work, but remain main sources of suckiness due to performance problems. I actively work on this. Still, I'd love to get the current state in to establish a baseline and for viewing pleasure of those who are interested. BUG=155269 Review URL: https://codereview.chromium.org/13947013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194565 0039d316-1c4b-4281-b951-d872f2087c98
* [SPDY] Replace SpdyIOBuffer with new SpdyBuffer classakalin@chromium.org2013-04-1734-421/+775
| | | | | | | | | | | | | | | | | | | Use SpdyBuffer for both SPDY reads and writes. A future CL will add hooks to SpdyBuffer so that we keep track of flow control windows properly. Replace SpdyFrameProducer with SpdyBufferProducer. Also introduce new SpdyReadQueue class for delegates of SpdyStream to use. BUG=176592 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=194560 Review URL: https://codereview.chromium.org/13990005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194564 0039d316-1c4b-4281-b951-d872f2087c98
* Simplify adding callbacks.ygorshenin@chromium.org2013-04-1731-457/+404
| | | | | | | | | BUG=231331 TBR=sky@chromium.org Review URL: https://codereview.chromium.org/14208014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194563 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 194560 "[SPDY] Replace SpdyIOBuffer with new SpdyBuffer c..."akalin@chromium.org2013-04-1734-775/+422
| | | | | | | | | | | | | | | | | | | | | | | > [SPDY] Replace SpdyIOBuffer with new SpdyBuffer class > > Use SpdyBuffer for both SPDY reads and writes. A future > CL will add hooks to SpdyBuffer so that we keep track of > flow control windows properly. > > Replace SpdyFrameProducer with SpdyBufferProducer. > > Also introduce new SpdyReadQueue class for delegates > of SpdyStream to use. > > BUG=176592 > > Review URL: https://codereview.chromium.org/13990005 TBR=akalin@chromium.org Review URL: https://codereview.chromium.org/13996009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194562 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2013-04-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194561 0039d316-1c4b-4281-b951-d872f2087c98
* [SPDY] Replace SpdyIOBuffer with new SpdyBuffer classakalin@chromium.org2013-04-1734-422/+775
| | | | | | | | | | | | | | | | | Use SpdyBuffer for both SPDY reads and writes. A future CL will add hooks to SpdyBuffer so that we keep track of flow control windows properly. Replace SpdyFrameProducer with SpdyBufferProducer. Also introduce new SpdyReadQueue class for delegates of SpdyStream to use. BUG=176592 Review URL: https://codereview.chromium.org/13990005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194560 0039d316-1c4b-4281-b951-d872f2087c98
* Blink roll 148530:148535tkent@chromium.org2013-04-171-1/+1
| | | | | | | | | BUG=none TBR=scheib@chromium.org Review URL: https://codereview.chromium.org/13977013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194559 0039d316-1c4b-4281-b951-d872f2087c98
* Disable tests in TwoClientSessionsSyncTest for Win.kjellander@google.com2013-04-171-5/+21
| | | | | | | | | | BUG=232313 TEST=sanity compile and run on Linux and Windows. TBR=akalin Review URL: https://codereview.chromium.org/14167014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194558 0039d316-1c4b-4281-b951-d872f2087c98
* Change the default options for the official ASan build:glider@chromium.org2013-04-171-4/+9
| | | | | | | | | | | | | | - remove quarantine_size, which is too greedy compared to the default value (this may result in less UAFs caught by ASan, but is very unlikely. ClusterFuzz uses the default setting) - temporarily set malloc_content_size=5 to avoid the enourmous growth of the stack trace repository (this will result in less memory footprint and shorter stacks for heap allocations printed in the reports. However we don't care much about the quality of ASan reports on the client side right now). BUG=address-sanitizer:177 Review URL: https://codereview.chromium.org/13932014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194555 0039d316-1c4b-4281-b951-d872f2087c98
* filemanager: Show Drive related gear menu for the sidebar "Shared with me", ↵haruki@chromium.org2013-04-171-5/+9
| | | | | | | | | | | "Recent", "Offline". BUG=230749 TEST=Open Files App, choose the sidebar item, verify the Drive related gear menus (e.g. "Show Google Docs files") are available. Review URL: https://codereview.chromium.org/13871005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194554 0039d316-1c4b-4281-b951-d872f2087c98
* dbus: Remove unused MockCrasAudioClient.haruki@chromium.org2013-04-175-66/+0
| | | | | | | | | BUG=231795 TEST=unittests,trybots Review URL: https://codereview.chromium.org/14118008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194553 0039d316-1c4b-4281-b951-d872f2087c98
* SyncFS: Add resource type field into DriveMetadatanhiroki@chromium.org2013-04-172-0/+9
| | | | | | | | | BUG=231273 TEST=pass all existing tests Review URL: https://codereview.chromium.org/13929012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194552 0039d316-1c4b-4281-b951-d872f2087c98
* Add an observer interface for DriveScheduler.kinaba@chromium.org2013-04-175-86/+166
| | | | | | | | | | | | This patch is just for setting up the interface. Actual code to fire each event will come soon. BUG=154243 TBR=sky@chromium.org Review URL: https://codereview.chromium.org/14148006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194551 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Check validity of loaded data in ↵hashimoto@chromium.org2013-04-173-9/+133
| | | | | | | | | | | | | DriveResourceMetadataStorageDB::Initialize Broken data should be detected and cleared during initialization to avoid fatal bugs. BUG=232054 TEST=unit_tests Review URL: https://codereview.chromium.org/14167009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194550 0039d316-1c4b-4281-b951-d872f2087c98
* Add standard policy provider tests for PReg policy reading.mnissler@chromium.org2013-04-175-61/+375
| | | | | | | | | | | | This wires up the standard ConfigurationPolicyProviderTest suite with a PolicyLoaderWin that is reading policy from GPO PReg files. BUG=chromium:186445 TEST=unit tests Review URL: https://codereview.chromium.org/13963003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194549 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 1481.0 to 1482.0chrome-release@google.com2013-04-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194547 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 194541 "Revert 194504 "Fix build break""kjellander@google.com2013-04-171-1/+1
| | | | | | | | | | | | | | | | | | | > Revert 194504 "Fix build break" > > > Fix build break > > R=shishir > > > > Review URL: https://codereview.chromium.org/14307004 > > TBR=tburkard@chromium.org > > Review URL: https://codereview.chromium.org/13933017 TBR=kjellander@google.com Review URL: https://codereview.chromium.org/14235016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194542 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 194504 "Fix build break"kjellander@google.com2013-04-171-1/+1
| | | | | | | | | | | | | > Fix build break > R=shishir > > Review URL: https://codereview.chromium.org/14307004 TBR=tburkard@chromium.org Review URL: https://codereview.chromium.org/13933017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194541 0039d316-1c4b-4281-b951-d872f2087c98
* Re-land greedy read support for SpdySessionrtenneti@chromium.org2013-04-1711-89/+1118
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added Unit test to close the socket during spdy_session's read and verifying that getting new URLs from the same network session don't result in a failure. Modified mock socket code to close the connection if mock_read closes the connection (because of ERR_CONNECTION_CLOSED error). Implement greedy approach to read all the data and process it from the ClientSocket until we block. Implemented the greedy approach to improves the network stack performance on the mobile. spdy_session_test_util.* files have the common code between SpdySessionSpd2Test and SpdySessionSpd3Test. Created this file to reduce errors and to avoid duplicating of code. Review URL: https://chromiumcodereview.appspot.com/11644088 The change adds a scoped_refptr to SpdySession in DoLoop to clean up the state and to finish pending reads, in case SpdyFramer receives GOAway and closes all streams. DoReadComplete was holding the last reference before and DoLoop was accessing the object after DoReadComplete deleted the object at the end of the function. Review URL: https://codereview.chromium.org/12212102 Added unit tests for use after free of SpdySession and unit test to test yielding + async during Read. A test that crashes when scoped_refptr to SpdySession deleted from DoLoop. Added the following test per rch@ to test interactions of yielding + async during Read. Do the following MockReads and verify all the data is consumed and SpdySession has yielded during Read. SYNCHRONOUS 8K SYNCHRONOUS 8K SYNCHRONOUS 8K SYNCHRONOUS 2K ASYNC 8K SYNCHRONOUS 8K SYNCHRONOUS 8K SYNCHRONOUS 8K SYNCHRONOUS 2K Review URL: https://chromiumcodereview.appspot.com/12207122 Reverted URL: https://chromiumcodereview.appspot.com/13608003/ BUG=175574, 166958, 224701, 175069 R=rch@chromium.org, jar@chromium.org TEST=network unit tests Review URL: https://codereview.chromium.org/13834009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194540 0039d316-1c4b-4281-b951-d872f2087c98
* Artifically delay the load finished signal until after dom content loadedjochen@chromium.org2013-04-173-0/+38
| | | | | | | | | | | | | | The webNavigation API defines that the signals always arrive in that order. However, the frame loader can finish loading the document before the parser actually finished parsing. To work around this, we delay the finished load signal until after parsing has finished. BUG=230767 TEST=WebNavigationApiTest.SrcDoc doesn't fail flakily Review URL: https://codereview.chromium.org/13929020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194539 0039d316-1c4b-4281-b951-d872f2087c98
* NaCl: Enable untrusted hardware exception handling by defaultmseaborn@chromium.org2013-04-176-30/+1
| | | | | | | | | | | | I'm leaving in NaClProcessHost's enable_exception_handling_ field because we will want to disable exception handling under PNaCl. BUG=https://code.google.com/p/nativeclient/issues/detail?id=2401 TEST=inbrowser_test_runner in nacl_integration Review URL: https://codereview.chromium.org/14122010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194537 0039d316-1c4b-4281-b951-d872f2087c98
* Removed extra line in doc.awatson@chromium.org2013-04-171-2/+1
| | | | | | | | BUG= Review URL: https://codereview.chromium.org/13394004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194536 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2013-04-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194535 0039d316-1c4b-4281-b951-d872f2087c98
* Blink roll 148494:148530tkent@chromium.org2013-04-171-1/+1
| | | | | | | | | BUG=none TBR=scheib@chromium.org Review URL: https://codereview.chromium.org/13926015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194534 0039d316-1c4b-4281-b951-d872f2087c98
* Remove Chromium dependency on WebCore/Configurations/Version.xcconfig file.abarth@chromium.org2013-04-172-61/+17
| | | | | | Review URL: https://codereview.chromium.org/14096010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194533 0039d316-1c4b-4281-b951-d872f2087c98
* Need to call RegisterJni for testing.rtoy@google.com2013-04-172-3/+12
| | | | | | | | BUG= Review URL: https://codereview.chromium.org/13949012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194530 0039d316-1c4b-4281-b951-d872f2087c98
* drive: Introduce DriveSystemServiceObserversatorux@chromium.org2013-04-1712-59/+54
| | | | | | | | | | | | | Move DriveFileSystem::NotifyFileSystemMounted() and NotifyFileSystemToBeUnmounted() to DriveSystemServiceObserver in favor of less things to have in DriveFileSystem BUG=231788 TEST=none Review URL: https://codereview.chromium.org/13866050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194529 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 194525 "Add InitWidgets() phase for GTK infobars."satorux@chromium.org2013-04-1724-168/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | Broke "Linux Tests (dbg)(2)" build. http://build.chromium.org/p/chromium.linux/builders/Linux%20Tests%20%28dbg%29%282%29/builds/33655 [4808:4808:0416/202705:277959527:FATAL:browser_main_loop.cc(186)] Gtk: gtk_box_pack: assertion `GTK_IS_WIDGET (child)' failed The error is FATAL with a Debug build but ERROR with a Release build, hence linux_rel try bot passed: http://build.chromium.org/p/tryserver.chromium/builders/linux_rel/builds/117475/steps/interactive_ui_tests/logs/stdio [10001:10001:0416/181034:1303866619:ERROR:browser_main_loop.cc(186)] Gtk: gtk_box_pack: assertion `GTK_IS_WIDGET (child)' failed > Add InitWidgets() phase for GTK infobars. > > This unifies the creation of GTK widgets and makes it happen in response to the infobar being shown. Currently, this generally happens at construction. Once the new ownership model lands, infobars will not yet be owned at construction time, and since widget creation includes getting a theme service from the owner, that needs to move out of the construction phase. > > Incidentally, this also makes the GTK native object creation happen at the same time as the views native object creation, not that that matters much. > > BUG=none > TEST=none > > Review URL: https://codereview.chromium.org/11775019 TBR=pkasting@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194528 0039d316-1c4b-4281-b951-d872f2087c98
* Ports XMPP Invalidation code from drive_file_sync_service in ↵calvinlo@chromium.org2013-04-176-135/+149
| | | | | | | | | | | | /sync_file_system to /google_apis/drive_notification_manager so it can be shared between ChromeOS file manager and SyncFS. Please note that to keep this patch streamlined I've only ported over the XMPP invalidation code for now and will port the polling logic in the next patch. BUG=173339 Review URL: https://codereview.chromium.org/13866037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194526 0039d316-1c4b-4281-b951-d872f2087c98
* Add InitWidgets() phase for GTK infobars.pkasting@chromium.org2013-04-1724-112/+168
| | | | | | | | | | | | | This unifies the creation of GTK widgets and makes it happen in response to the infobar being shown. Currently, this generally happens at construction. Once the new ownership model lands, infobars will not yet be owned at construction time, and since widget creation includes getting a theme service from the owner, that needs to move out of the construction phase. Incidentally, this also makes the GTK native object creation happen at the same time as the views native object creation, not that that matters much. BUG=none TEST=none Review URL: https://codereview.chromium.org/11775019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194525 0039d316-1c4b-4281-b951-d872f2087c98
* ThreadWatcher - give ShutdownWatchDogThread::Alarm a more rtenneti@chromium.org2013-04-171-1/+5
| | | | | | | | | | | | | | unique function body. Changed ShutdownWatchDogThread::Alarm's to call ShutdownCrash(), so it does not get merged by the link time optimization. R=jar@chromium.org, eroman@chromium.org BUG=232080 Review URL: https://codereview.chromium.org/14250003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194524 0039d316-1c4b-4281-b951-d872f2087c98
* Better support for chrome for cros local builds. achuith@chromium.org2013-04-173-11/+31
| | | | | | | | | | | | | * Use ldd to detect chrome for cros local builds. * Add browser types debug-cros and release-cros for chrome for cros on linux. * Remove browser option --cros-desktop BUG=229692 TEST=run_tests works with cros-debug going through the login flow. NOTRY=True Review URL: https://codereview.chromium.org/13891011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194522 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: Return additional schemes vector as out parameter from ↵kinuko@chromium.org2013-04-176-16/+14
| | | | | | | | | | | | | | | | | GetAdditionalWebUISchemes Changing ContentBrowserClient::GetAdditionalAllowedSchemesForFileSystem() not to return std::vector<std::string> as return value (but as an out parameter) to follow the coding convention. A follow-up patch for https://chromiumcodereview.appspot.com/13415006 BUG=none TEST=no new tests as no behavioral changes Review URL: https://codereview.chromium.org/14200011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194519 0039d316-1c4b-4281-b951-d872f2087c98
* On Mac, ensure messages displayed in the bookmark bar do not overlap with ↵beaudoin@chromium.org2013-04-173-7/+89
| | | | | | | | | | | the Apps bookmark button. BUG=230968 TEST=Lauch Chrome on Mac with instant extended. Ensure you have no bookmark. On the NTP observe that the "Apps" button does not overlap the empty bookmark bar message. Review URL: https://codereview.chromium.org/14262013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194516 0039d316-1c4b-4281-b951-d872f2087c98
* New network error page: Fix resubmit warning whenmmenke@chromium.org2013-04-176-60/+79
| | | | | | | | | | | | | | navigating forward / back to a page generated by a POST that can not be retrieved from the CACHE. This was broken (knowingly) in revision 191712 (https://codereview.chromium.org/12277011/). BUG=174194,226909 Review URL: https://codereview.chromium.org/13811022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194514 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2013-04-171-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194513 0039d316-1c4b-4281-b951-d872f2087c98
* Blink roll r148474:148494tkent@chromium.org2013-04-171-1/+1
| | | | | | | | TBR=haraken Review URL: https://codereview.chromium.org/13972013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194512 0039d316-1c4b-4281-b951-d872f2087c98
* Fix ExtensionSpecialStoragePolicy.IsInstalledAppkinuko@chromium.org2013-04-172-13/+47
| | | | | | | | | | | | We weren't adding apps to the installed_app set when it doesn't have any storage permissions. BUG=231167 TEST=ExtensionSpecialStoragePolicyTest.IsInstalled Review URL: https://codereview.chromium.org/13994010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194511 0039d316-1c4b-4281-b951-d872f2087c98
* Avoid sending empty OnRepaint msgs and propagate window damage correctlyjamesr@chromium.org2013-04-176-7/+35
| | | | | | | | | | | | | | | | | | | | | | | | This fixes two issues related to OnRepaint (window damage) messages: 1.) In the case of a renderer-resized widget, the browser's information about the size of the widget could be out of date. If the browser widget was asked to paint in compositing mode before it received the proper size it could send a ViewMsg_OnRepaint with 0x0 size and then set repaint_ack_pending_, expecting the renderer to reply. The renderer wasn't actually replying with a frame since damaging a 0x0 rect doesn't actually require painting anything. This suppresses sending the OnRepaint message if the browser's size is 0x0. Either the size will at some point become 0x0, triggering a repaint, or the user will never see it. 2.) In compositing mode on the renderer side we weren't plumbing the OnRepaint window damage rect properly in to the compositor. Thus the compositor could end up not producing a frame after receiving an OnRepaint message, confusing the browser rate limiting logic greatly. BUG=230766 Review URL: https://codereview.chromium.org/13926009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194510 0039d316-1c4b-4281-b951-d872f2087c98