summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Basic multi-module supportelijahtaylor@chromium.org2013-04-3043-27/+809
| | | | | | | | | | | | | | Allows resource export from one extension that can be imported into another extension's namespace. BUG=236044 TEST=browser_tests ExtensionApiTest.SharedModule TEST=unit_tests SharedModuleManifestTest.* Review URL: https://chromiumcodereview.appspot.com/13971005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197201 0039d316-1c4b-4281-b951-d872f2087c98
* net: Remove use of ALLOW_THIS_IN_INITIALIZER_LIST.scherkus@chromium.org2013-04-3083-183/+154
| | | | | | | | | | | It's no longer providing value as the MSVC warning is disabled during compilation. Refer to bug for details. BUG=234765 R=rch@chromium.org Review URL: https://codereview.chromium.org/14113037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197200 0039d316-1c4b-4281-b951-d872f2087c98
* Fix cycling of focusable panes in Chrome OS.dmazzoni@chromium.org2013-04-3029-249/+391
| | | | | | | | | | | | | | Update the ash window cycle controller so it can tell aura::Window to rotate pane focus and pass it the cycle direction, rather than just activating each window. The end result is that when you press Ctrl+Back and Ctrl+Forward you get a consistent cycle now, going through all panes within the most recently active browser window and then the launcher and status area. BUG=154598 Review URL: https://chromiumcodereview.appspot.com/13861032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197199 0039d316-1c4b-4281-b951-d872f2087c98
* Reorder pieces of code. No other changes.pkasting@chromium.org2013-04-3047-691/+690
| | | | | | | | | | | | | | | | | * Make overriding functions as private as possible * Make declaration order match definition order * Fix a few other problems with section order not following the style guide * For consistency, list functions in order: virtuals, non-virtuals, macro-based declarations * In a few .cc files, try to keep class declarations and definitions together * In a few .cc files, move enums into the classes the use them BUG=none TEST=none R=sky@chromium.org Review URL: https://codereview.chromium.org/14383022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197198 0039d316-1c4b-4281-b951-d872f2087c98
* C++ readability review for dalecurtis.dalecurtis@google.com2013-04-303-24/+93
| | | | | | | | | | | | | | | | | | | | | | | | AudioConverter is a tool for mixing and converting audio data from one format to another; differences may include sample rates, channel layout, and buffer size. AudioConverter is the work horse behind several Chrome features: - Allows mixing and conversion of HTML5 audio streams for thread savings: https://code.google.com/p/chromium/codesearch#chromium/src/media/base/audio_renderer_mixer.cc - Allows Pepper clients (like Flash) to be oblivious of hardware requirements: https://code.google.com/p/chromium/codesearch#chromium/src/media/audio/audio_output_resampler.cc - Tab Audio Mirroring: https://code.google.com/p/chromium/codesearch#chromium/src/media/audio/virtual_audio_input_stream.cc Original CL for context: https://codereview.chromium.org/11410012/ R=fischman@chromium.org, lmendes@google.com Review URL: https://codereview.chromium.org/12670011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197197 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 197147 "Deeper histogram for SQLITE_IOERR."jar@chromium.org2013-04-302-52/+0
| | | | | | | | | | | | | | | | | | > Deeper histogram for SQLITE_IOERR. > > Sqlite.Error records the basic SQLite error codes. Most of the > extended codes are under SQLITE_IOERR, add a new histogram to record > those. > > BUG=none > > Review URL: https://chromiumcodereview.appspot.com/14439007 TBR=shess@chromium.org Review URL: https://codereview.chromium.org/14555006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197196 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 196626 "DevTools: list devices above Chrome pages under c..."jhawkins@chromium.org2013-04-303-20/+9
| | | | | | | | | | | | | | | | Change was unreviewed by OWNERS. > DevTools: list devices above Chrome pages under chrome://inspect. > > TBR=jhawkins for minor webui tweak. > > Review URL: https://codereview.chromium.org/13863018 TBR=pfeldman@chromium.org Review URL: https://codereview.chromium.org/14571002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197195 0039d316-1c4b-4281-b951-d872f2087c98
* <webview>: Fix redirect from about:blankfsamuel@chromium.org2013-04-308-60/+142
| | | | | | | | | | | | | | | | | | | | | | | | | Some sites replace default link behavior with the following snippet: function open(href) { var w = window.open('', '_blank'); w.opener = null; w.document.write('<META HTTP-EQUIV="refresh" content="0; url=' + href + '">'); w.document.close(); } The subsequent navigation fails because it's delegated to the browser process, and the New Window API is not expecting browser-side navigation prior to attachment. This patch delays all pre-attachment navigations until attachment. BUG=233475, 222618 Test=WebViewInteractiveTest.NewWindow Review URL: https://chromiumcodereview.appspot.com/13837005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197194 0039d316-1c4b-4281-b951-d872f2087c98
* cc: TileManager AssignGpuMemory cleanupvmpstr@chromium.org2013-04-305-68/+113
| | | | | | | | | | | | | This is work in progress. Some of the functionality to get the currently used memory is moved into DrawingInfo, which (hopefully) makes TileManager a bit more clear when dealing with tile memory BUG=225804 Review URL: https://chromiumcodereview.appspot.com/13771015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197193 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce Multicast Socket APIikarienator@chromium.org2013-04-3020-37/+1210
| | | | | | | | | | | | | | | | | | | | | | | | | Allow Chrome Apps developer to receive multicast socket packets by exposing join/leave group ability to UDP socket. Introducing: 1. chrome.socket.joinGroup / chrome.socket.leaveGroup / chrome.socket.getJoinedGroups to manipulate multicast group membership. 2. Socket permission 'udp-multicast-membership'. 3. chrome.socket.setMulticastTimeToLive / chrome.socket.setMulticastLoopbackMode to control the multicast packet sending for UDP sender. To expose the ability of manipulating multicast group membership and controlling multicast packet sending, new methods are added into network stack (net::UDPSocket class): 1. JoinGroup/LeaveGroup 2. SetMulticastTimeToLive/SetMulticastLoopbackMode To demo the ability, a demo app is created: https://github.com/GoogleChrome/chrome-app-samples/pull/92 TEST=Open the demo app at /chrome-app-samples/multicast in two machines of the same network. Open them and chat, they can talk to each other. NOTRY=true BUG=140681 Review URL: https://chromiumcodereview.appspot.com/12684008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197192 0039d316-1c4b-4281-b951-d872f2087c98
* Batches writes to the activitylog to minimize disk activityfelt@chromium.org2013-04-306-57/+289
| | | | | | | | | | | | Some extensions make API calls more than once a second. We don't want to write to the disk that often. This patch batches writes so that we only write to disk at most every 2 minutes. BUG=161002,226375 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=197061 Review URL: https://chromiumcodereview.appspot.com/12611032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197191 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 197178 "Make it possible to delegate root layer scroll of..."hshi@chromium.org2013-04-3013-175/+48
| | | | | | | | | | | | | | | | | | > Make it possible to delegate root layer scroll offset outside of cc. > > This change makes it possible for the embedder to own the root layer > scroll offset. > > BUG=b/6029133 > > Review URL: https://chromiumcodereview.appspot.com/13869006 Fixes TreeCloser Bug 236675 TBR=mkosiba@chromium.org Review URL: https://codereview.chromium.org/14564002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197189 0039d316-1c4b-4281-b951-d872f2087c98
* [Spellcheck] Making SpellcheckServiceBrowserTest more robust. This ensures ↵rlp@chromium.org2013-04-293-3/+21
| | | | | | | | | | the expected starting state of the test. BUG=235975 Review URL: https://chromiumcodereview.appspot.com/14021008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197182 0039d316-1c4b-4281-b951-d872f2087c98
* AwContentClient no longer extends ContentViewClientjoth@chromium.org2013-04-295-167/+198
| | | | | | | | | | | This keeps the layers better isolated, and avoids the aw embedder having to use content layer classes directly. BUG= Review URL: https://chromiumcodereview.appspot.com/13136002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197181 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 197172 "Do not open clearly invalid entries in the Simple..."miket@chromium.org2013-04-293-63/+7
| | | | | | | | | | | | | | | | | | | > Do not open clearly invalid entries in the SimpleCache. > > In the case of premature kill, the SimpleCache backend can leave > invalid entries on disk without EOF records. Now let's catch these > early and fail to open the entries. > > R=pasko@google.com, rdsmith@chromium.org > BUG=236390 > > Review URL: https://codereview.chromium.org/13844016 TBR=gavinp@chromium.org Review URL: https://codereview.chromium.org/13934027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197180 0039d316-1c4b-4281-b951-d872f2087c98
* Make it possible to delegate root layer scroll offset outside of cc.mkosiba@chromium.org2013-04-2913-48/+175
| | | | | | | | | | | This change makes it possible for the embedder to own the root layer scroll offset. BUG=b/6029133 Review URL: https://chromiumcodereview.appspot.com/13869006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197178 0039d316-1c4b-4281-b951-d872f2087c98
* Don't show bookmark bar when suggestion are hidden.jeremycho@chromium.org2013-04-291-1/+0
| | | | | | | | BUG=235996 Review URL: https://chromiumcodereview.appspot.com/14061015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197177 0039d316-1c4b-4281-b951-d872f2087c98
* Move MediaGalleries- and Omnibox-related methods and knowledge to ↵rdevlin.cronin@chromium.org2013-04-2911-564/+704
| | | | | | | | | | | | | | | MediaGalleriesPrivateAPI and OmniboxAPI, respectively. Expose methods from ExtensionScopedPrefs to be public in ExtensionPrefs; add non-const versions for value updating (and rename from ReadExtensionPref[Type] to ReadPrefAs[Type], since the Extension is implied). Share code in ExtensionPrefs between GetInstalledExtensionInfo() and GetDelayedInstallInfo(). BUG=180083 TBR=ben@chromium.org, thestig@chromium.org (ben - gypis, thestig - c/b/media_galleries/) Review URL: https://chromiumcodereview.appspot.com/14106002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197176 0039d316-1c4b-4281-b951-d872f2087c98
* Added appropriate load flags to AttestationCAClient.dkrahn@google.com2013-04-291-0/+4
| | | | | | | | | | | | Communication with the CA does not use cookies or cache. Load flags to this effect are now explicitly set on the URLFetcher. BUG=chromium:219959 TEST=unit Review URL: https://chromiumcodereview.appspot.com/14522016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197175 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2013-04-291-3/+3
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197174 0039d316-1c4b-4281-b951-d872f2087c98
* Update nss_revision to 197158 to export the functions neededwtc@chromium.org2013-04-291-1/+1
| | | | | | | | | | | | | | by the libSSL in NSS 3.15. The underlying CL is https://codereview.chromium.org/14544011/ R=rsleevi@chromium.org BUG=233732 TEST=no build errors on Windows Review URL: https://codereview.chromium.org/14324012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197173 0039d316-1c4b-4281-b951-d872f2087c98
* Do not open clearly invalid entries in the SimpleCache.gavinp@chromium.org2013-04-293-7/+63
| | | | | | | | | | | | | In the case of premature kill, the SimpleCache backend can leave invalid entries on disk without EOF records. Now let's catch these early and fail to open the entries. R=pasko@google.com, rdsmith@chromium.org BUG=236390 Review URL: https://codereview.chromium.org/13844016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197172 0039d316-1c4b-4281-b951-d872f2087c98
* [chromedriver] Fix typo in test_environment.py, which was causing desktopkkania@chromium.org2013-04-291-2/+2
| | | | | | | | | | to use the same test filter as android. BUG=none NOTRY=true Review URL: https://chromiumcodereview.appspot.com/14466011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197171 0039d316-1c4b-4281-b951-d872f2087c98
* cc: Add test images for picture draw quad testsenne@chromium.org2013-04-292-0/+0
| | | | | | | | | R=danakj@chromium.org BUG=none Review URL: https://codereview.chromium.org/14533003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197170 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] nacl_irt_memory renamed again, broke nacl_io build.binji@chromium.org2013-04-291-1/+1
| | | | | | | | | BUG=none TBR=noelallen@chromium.org Review URL: https://codereview.chromium.org/13886017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197169 0039d316-1c4b-4281-b951-d872f2087c98
* Pass profile directory to NaClProcessHostvictorhsieh@chromium.org2013-04-295-11/+19
| | | | | | | | | | | | Profile directory is passed correctly in pure plugin, but not NaCl. BrowserPpapiHostImpl didn't have a real profile directory. The real value is now passed from ChromeRenderMessageFilter::OnLaunchNaCl -> NaClProcessHost -> BrowserPpapiHostImpl. BUG=235072 Review URL: https://chromiumcodereview.appspot.com/14475010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197166 0039d316-1c4b-4281-b951-d872f2087c98
* Restrict EvictOldEntries test to only the Simple Backendpasko@google.com2013-04-291-53/+41
| | | | | | | | | | | Also fix the failure case not to crash all the tests. Also add comments about non-mandatory nature of this test. BUG=234776 Review URL: https://chromiumcodereview.appspot.com/14373020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197165 0039d316-1c4b-4281-b951-d872f2087c98
* Avoid crashing the browser on truncated reads from the cache backendpasko@google.com2013-04-292-2/+37
| | | | | | | | BUG=236384 Review URL: https://chromiumcodereview.appspot.com/14533007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197164 0039d316-1c4b-4281-b951-d872f2087c98
* Implement the GTK UI portion for SAML support.rogerta@chromium.org2013-04-294-6/+21
| | | | | | | | | | See the equivalent Views implementation in codereview.chromium.org/13069006 BUG=222924 Review URL: https://chromiumcodereview.appspot.com/13844014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197163 0039d316-1c4b-4281-b951-d872f2087c98
* History: Eliminate floats which caused layout quirks in Other Devices sectiondubroy@chromium.org2013-04-291-5/+2
| | | | | | | | | BUG=236374 R=jhawkins@chromium.org Review URL: https://chromiumcodereview.appspot.com/13901015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197161 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 196560 "Drop frames with older timestamps than the last d..."justinlin@chromium.org2013-04-292-13/+1
| | | | | | | | | | | | > Drop frames with older timestamps than the last delivered frame. > > Review URL: https://chromiumcodereview.appspot.com/14417009 TBR=justinlin@chromium.org Review URL: https://codereview.chromium.org/13834011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197160 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 196604 "Don't resize web contents during fast resize mode"sail@chromium.org2013-04-294-44/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (Reverting, this caused a couple of regressions. BUG=230574, 236279, 236280 > Don't resize web contents during fast resize mode > > My instant extended changes caused a regression where showing or > hiding the bookmark bar caused the web contents to "jump". > > The problem was that during the animation the web contents was > being resized. Fix was to never resize the web contents while > an animation was in progress. > > Screen recording: https://docs.google.com/file/d/0B0Odde3V7EhWZUR5NFl3Z2tiT1U/edit?usp=sharing > > BUG=230574 > TEST=Navigated to cnn.com. Hide the bookmark bar. Verify that the page > smoothly moves up during animation. > Verified that BrowserWindowControllerTest.FastResize fails without my > patch and passes with it. > > Review URL: https://chromiumcodereview.appspot.com/14336007 TBR=sail@chromium.org Review URL: https://codereview.chromium.org/14452005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197159 0039d316-1c4b-4281-b951-d872f2087c98
* rlz: Use base::MessageLoop.xhwang@chromium.org2013-04-292-7/+8
| | | | | | | | | BUG=236029 R=rogerta@chromium.org Review URL: https://chromiumcodereview.appspot.com/14520024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197157 0039d316-1c4b-4281-b951-d872f2087c98
* Update perf-av expectations: seek and ttp changes caused by r196923 ↵anandc@chromium.org2013-04-291-36/+36
| | | | | | | | | | | dropped-frames changes caused by r190426. BUG=234252, 236534 NOTRY=true Review URL: https://chromiumcodereview.appspot.com/14109032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197155 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2013-04-291-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197153 0039d316-1c4b-4281-b951-d872f2087c98
* Snappy: Enable snappy compression for leveldb, roll snappy to r74, and ↵jsbell@chromium.org2013-04-294-3/+25
| | | | | | | | | | | | | suppress warnings Since compression is turned on in leveldb::Options by default, this will implicitly enable compression for all leveldb usage. Blocks are tagged as compressed or not, so older uncompressed data can still be read, but new data will be compressed when written. BUG=81384 R=darin@chromium.org Review URL: https://codereview.chromium.org/12386002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197152 0039d316-1c4b-4281-b951-d872f2087c98
* Set suggestion margins correctly and fix RTL.jered@chromium.org2013-04-292-11/+37
| | | | | | | | | | | | | | | | We need to reset margins the first time the window has a valid width and afterwards onmarginchange. Also fix alignment when rendering suggestions in right-to-left languages. TEST=Note the right margin of the selection border is correct. Run with --lang=ar and notice that RTL behavior makes sense. BUG=229016,235708 R=dbeam@chromium.org, samarth@chromium.org Review URL: https://codereview.chromium.org/14253014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197151 0039d316-1c4b-4281-b951-d872f2087c98
* Move SupportsUserData code into AutofillWebData, so base class can live ↵caitkp@chromium.org2013-04-295-43/+52
| | | | | | | | | | | | | completely on UI thread. (depends on https://codereview.chromium.org/14103021/) TBR=akalin@chromium.org (c/b/sync) BUG=230920 Review URL: https://chromiumcodereview.appspot.com/13898011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197149 0039d316-1c4b-4281-b951-d872f2087c98
* Bluetooth: gather usage metricskeybuk@chromium.org2013-04-2918-12/+494
| | | | | | | | | | | Resubmit; this was reverted in 196993 due to a missing initialization in a unit test. BUG=233820 TEST=chrome:///histograms Review URL: https://codereview.chromium.org/14109028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197148 0039d316-1c4b-4281-b951-d872f2087c98
* Deeper histogram for SQLITE_IOERR.shess@chromium.org2013-04-292-0/+52
| | | | | | | | | | | | Sqlite.Error records the basic SQLite error codes. Most of the extended codes are under SQLITE_IOERR, add a new histogram to record those. BUG=none Review URL: https://chromiumcodereview.appspot.com/14439007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197147 0039d316-1c4b-4281-b951-d872f2087c98
* Explicitly mark UpdateTopControlsState for multi-threaded.sheu@chromium.org2013-04-291-0/+1
| | | | | | | | | | | | | Top controls should only be used in multi-threaded proxy mode. BUG=None TEST=local build, run on desktop Linux, unittest Change-Id: Iaf1284d1eda8f4aa9b33d31dfe8fdf1069d7ebd0 Review URL: https://chromiumcodereview.appspot.com/14359011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197146 0039d316-1c4b-4281-b951-d872f2087c98
* Instant Extended: Enable prominent search term UI for Macsail@chromium.org2013-04-296-19/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This CL enables support for 'URL_LIKE_SEARCH_TERMS' types. This allows search term extraction for URL shaped search terms and mixed content pages. When the search term type is URL_LIKE_SEARCH_TERMS the search token is moved to the left and the separator is hidden. URL Shaped query: http://i.imgur.com/UWXxAHp.png Mixed Content: http://i.imgur.com/f29sMMK.png BUG=233494 Test= URL Shaped Query: Enable instant extended. Type example.com in the omnibox Arrow down for the example.com query, press enter. Mixed Content: Couldn't figure out a way to test this so I hard coded ToolbarModelImpl::GetSecurityLevelForWebContents() to return SECURITY_WARNING. Then I just did a normal search. Review URL: https://chromiumcodereview.appspot.com/14301017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197145 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 196951 "Disable test CaptivePortalBrowserTest.NavigateLo..."ccameron@chromium.org2013-04-291-2/+1
| | | | | | | | | | | | | | | | > Disable test CaptivePortalBrowserTest.NavigateLoadingTabToTimeoutTwoSites on Mac > > BUG=236118 > TBR=danakj > NOTRY=true > > Review URL: https://chromiumcodereview.appspot.com/14061024 TBR=ccameron@chromium.org Review URL: https://codereview.chromium.org/14290003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197144 0039d316-1c4b-4281-b951-d872f2087c98
* requestAutocomplete: fix main content area painting issuesestade@chromium.org2013-04-291-1/+5
| | | | | | | | | BUG=224635 R=sky@chromium.org Review URL: https://codereview.chromium.org/14307017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197143 0039d316-1c4b-4281-b951-d872f2087c98
* On Windows 8 don't assume that the browser is shutting down in desktop mode ↵ananta@chromium.org2013-04-291-8/+12
| | | | | | | | | | | | | | | | | | | | because the ASH environment could be still active. We currently have a check for this in the ShouldStartShutdown function in the application_lifetime.cc file which is called when a browser window is being closed. It checks for whether both browser lists (desktop and ASH) are empty. However ASH could be active without any active browser windows. Updated the checks to account for this. BUG=235654 R=cpu TBR=ben Review URL: https://codereview.chromium.org/14273040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197142 0039d316-1c4b-4281-b951-d872f2087c98
* Add a command line flag for dumping trace events to VLOGvollick@chromium.org2013-04-296-3/+110
| | | | | | | | | | | Only affects cc_unittests at the moment. BUG=None TBR=nduca@chromium.org Review URL: https://chromiumcodereview.appspot.com/14275006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197141 0039d316-1c4b-4281-b951-d872f2087c98
* Fix RenderWidgetHostViewAura's accessible parent harder.grt@chromium.org2013-04-2917-44/+75
| | | | | | | | | | | | | | | The previous attempt at this (r189195) didn't work for Chrome Frame on account of WebView::AttachWebContents and RenderWidgetHostImpl::SetView being called in the opposite order in comparison to Chrome. This attempt works differently in that WebContents holds the accessible parent and hands it out by way of RenderWidgetHostImpl and RenderWidgetHostDelegate. BUG=175156 Review URL: https://chromiumcodereview.appspot.com/14200043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197140 0039d316-1c4b-4281-b951-d872f2087c98
* Add fling velocity updates from gesture curves.jdduke@chromium.org2013-04-299-5/+80
| | | | | | | | | | | | | As per crrev.com/13674008, WebGestureCurveTarget now supports fling velocity notifications. This patch hooks in the notifications from existing WebGestureCurve implementations. BUG=135975 NOTRY=true Review URL: https://chromiumcodereview.appspot.com/14128010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197139 0039d316-1c4b-4281-b951-d872f2087c98
* [rAc Android dialog] Edit/Add as in the latest UI mocks.aruslan@chromium.org2013-04-299-219/+470
| | | | | | | | | | | | | | | | | | | | - Removes hardcoded "Add..." and "Edit..." menu items. - Adds an "Edit" button to editable items in a drop-down. - Removes our own strings and uses those provided by the controller. (We could change the controller strings through .grd per platform.) - Handles "Edit" button clicks. - Pulls back the edited data into the presentable menu item. UI mocks (option B): https://docs.google.com/a/google.com/document/d/15USYTwRRhbDQRdbA1JpmWs53opL8864cwt9ETCLCFKM/edit#heading=h.n459ql1no01k Follow-up bugs: 224162 (IsMenuItemEditable), 230685 (collapse user input). BUG=224162, 225551, 225554, 236437 Review URL: https://chromiumcodereview.appspot.com/14061013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197138 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2013-04-291-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197134 0039d316-1c4b-4281-b951-d872f2087c98