summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix command handler for /session/:sessionId/execute (execute_script) forkkania@chromium.org2011-02-183-69/+17
| | | | | | | | | | | | | | | ChromeDriver. The args parameter should be a ListValue, not a string. Also, the args parameter is not optional; if no args are provided in the request, an error should be returned (the handler was defaulting to an empty list). Patch by jleyba@chromium.org. Original review at http://codereview.chromium.org/6544003 BUG=none TEST=none Review URL: http://codereview.chromium.org/6542025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75442 0039d316-1c4b-4281-b951-d872f2087c98
* Log the number of objects in a Pack when it is deleted in debug builds to ↵tschmelcher@chromium.org2011-02-181-0/+2
| | | | | | | | | | help JS app developers find leaks. TEST=used it in a JS app to help identify a leak BUG=none Review URL: http://codereview.chromium.org/6542028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75441 0039d316-1c4b-4281-b951-d872f2087c98
* Add net.sln output folders to .gitignore.joi@chromium.org2011-02-181-0/+2
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6538060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75439 0039d316-1c4b-4281-b951-d872f2087c98
* Removing AccessLog class. This is a partial revert of yzshen's r74872.joi@chromium.org2011-02-182-69/+1
| | | | | | | | | | | | | | | | | | | | The AccessLog class was something we added to track down a crash, which is no longer happening after that change. Reverting piece by piece and waiting for the next canary build before doing the next part. Note that the use of the AccessLog class could have introduced slight serialization to the method URLRequestThrottlerManager::RegisterRequestUrl as it would call the AccessLog::Add method which synchronized on a lock. So removing is not 100% safe; I will watch for crashes in the canary builds after this. BUG=71721 TEST=none Review URL: http://codereview.chromium.org/6538061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75438 0039d316-1c4b-4281-b951-d872f2087c98
* Reduce size of all PNGs with pngcrush.estade@chromium.org2011-02-18498-0/+0
| | | | | | | | | BUG=73100 TEST=trybots Review URL: http://codereview.chromium.org/6538008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75434 0039d316-1c4b-4281-b951-d872f2087c98
* Implement chrome://crashesstuartmorgan@chromium.org2011-02-1815-0/+565
| | | | | | | | | | | | | Creates a new internal page for listing recent reported crashes, to make it easier for users to report crashes, or get crash IDs when asked in bug reports. Won't yet display any crashes on Windows, since the breakpad side is not yet done on Windows. BUG=41106 TEST=Visit chrome://crashes; depending on the build type, platform, and metric pref state, it should display crashes or an informative message. Review URL: http://codereview.chromium.org/6545001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75433 0039d316-1c4b-4281-b951-d872f2087c98
* Fix bug with other bookmarks painting... a couple of methods hadn't been ↵ben@chromium.org2011-02-181-2/+2
| | | | | | | | | | | | | renamed to OnPaint. http://crbug.com/73137 TEST=see bug TBR=sky Review URL: http://codereview.chromium.org/6525055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75432 0039d316-1c4b-4281-b951-d872f2087c98
* Remove usages of RootView from View by moving relevant RootView API methods ↵ben@chromium.org2011-02-1821-203/+211
| | | | | | | | | | | | | to Widget. This results in some code duplication right now but this will be mitigated once all platforms use WidgetImpl. http://crbug.com/72040 TEST=existing tests Review URL: http://codereview.chromium.org/6507028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75431 0039d316-1c4b-4281-b951-d872f2087c98
* Increase the minimum interval for timers on background tabs to reducekbr@google.com2011-02-181-1/+1
| | | | | | | | | | | | | | | their CPU consumption. The new interval is 1000 ms, or once per second. We can easily adjust this value up or down, but this seems like a reasonable value to judge the compatibility impact of this change. BUG=66078 TEST=none (tested manually with minimal test case) Review URL: http://codereview.chromium.org/6546021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75430 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Fix cut-off Browser chrome when opening Tabpose with an infobar showing.rsesek@chromium.org2011-02-183-9/+45
| | | | | | | | | BUG=73357 TEST=Get an infobar to show. Open Tab Overview/Tabpose. Everything looks correct. Review URL: http://codereview.chromium.org/6543012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75429 0039d316-1c4b-4281-b951-d872f2087c98
* Second try - didn't rev the unit test in the first version of this fix.maf@chromium.org2011-02-183-8/+24
| | | | | | | | | | | | The bookmark folder menus look bad when squeezed up against the bottom of a screen. Detect this case and automatically switch to showing the menu above the button in this case. BUG=69996 TEST=bookmark_bar_folder_controller_unittest.mm Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=75342 Review URL: http://codereview.chromium.org/6469044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75428 0039d316-1c4b-4281-b951-d872f2087c98
* Removing WS_EX_CLIENTEDGE from the extended styles for the ChromeFrame ↵ananta@chromium.org2011-02-181-1/+1
| | | | | | | | | | | | | | | | | active document. This fixes parts of bug http://code.google.com/p/chromium/issues/detail?id=55764 On IE9 a border is still drawn around all mshtml windows, which does not happen with ChromeFrame. This needs more investigation. BUG=55764 TEST=Launch IE9 and navigate to a ChromeFrame enabled page. The ChromeFrame page should not have a client edge border. Review URL: http://codereview.chromium.org/6531022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75427 0039d316-1c4b-4281-b951-d872f2087c98
* revert back to stable 812reed@google.com2011-02-181-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75421 0039d316-1c4b-4281-b951-d872f2087c98
* Implement support for special offset constants in IAccessibleText methods.dmazzoni@chromium.org2011-02-181-1/+9
| | | | | | | | | | | This allows JAWS to fully support text editing. BUG=none TEST=manual testing with JAWS screenreader Review URL: http://codereview.chromium.org/6469037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75418 0039d316-1c4b-4281-b951-d872f2087c98
* Update Chromoting login UIgarykac@chromium.org2011-02-185-74/+158
| | | | | | | | | BUG=none TEST=chromoting UI manual tests Review URL: http://codereview.chromium.org/6518013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75417 0039d316-1c4b-4281-b951-d872f2087c98
* Quick fix for problems with editable text field accessibility by not sendingdmazzoni@chromium.org2011-02-182-2/+6
| | | | | | | | | | | | children of text fields from the renderer to the browser. The child containing the text appeared to be redundant anyway. BUG=none TEST=updated unit test, manual testing with screen readers Review URL: http://codereview.chromium.org/6469038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75416 0039d316-1c4b-4281-b951-d872f2087c98
* roll to pickup initialization of fMaskFormatreed@google.com2011-02-182-2/+2
| | | | | | Review URL: http://codereview.chromium.org/6544016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75415 0039d316-1c4b-4281-b951-d872f2087c98
* Create a new autocomplete popup for touch. This CL depends onvarunjain@chromium.org2011-02-189-37/+291
| | | | | | | | | | | http://codereview.chromium.org/6286092/ BUG=none TEST=none Review URL: http://codereview.chromium.org/6349101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75414 0039d316-1c4b-4281-b951-d872f2087c98
* Disabling Autofill test, ↵sunandt@chromium.org2011-02-181-0/+3
| | | | | | | | | | | autofill.AutoFillTest.testFilterMalformedEmailAddresses, as it's failing on Windows pyauto bots. BUG=73439 TEST=none Review URL: http://codereview.chromium.org/6469058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75413 0039d316-1c4b-4281-b951-d872f2087c98
* Add product-specific flags to the rename command in the registry. This ↵grt@chromium.org2011-02-183-16/+18
| | | | | | | | | | | fixes a regression that prevented in-place upgrades of Chrome Frame from working. BUG=73329 TEST=Follow the steps in the bug. Between steps 4 and 5, check that the "cmd" registry value in HKLM\Software\Google\Update\Clients\{8BA986DA-5100-405E-AA35-86F34A02ACBF} contains "--chrome-frame". Review URL: http://codereview.chromium.org/6541029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75412 0039d316-1c4b-4281-b951-d872f2087c98
* Update Breakpad to trunk r774 to pick up:mark@chromium.org2011-02-181-1/+1
| | | | | | | | | | Fix breakpad compilation on ubuntu 10.10. BUG=none TEST=none Review URL: http://codereview.chromium.org/6546023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75411 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 75405 - Register Application Restart with Windows Restart Manager on ↵msw@chromium.org2011-02-185-120/+65
| | | | | | | | | | | | | | browser_main startup for Windows Vista / Server 2008 and beyond. This launches Chrome and restores tabs if the computer is restarted as the result of an update. Make changes to support necessary CommandLine operations. Other minor cleanup and refactoring. BUG=70824 TEST=Reboot from update or ::ExitWindowsEx(EWX_RESTARTAPPS... Chrome should restart and restore tabs on login. Test launching Chrome with a variety of command-line switches and arguments. Review URL: http://codereview.chromium.org/6462024 TBR=msw@chromium.org Review URL: http://codereview.chromium.org/6538059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75410 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 75399 - Revert 75371 - Try to fix the Win Builder (dbg)(shared) build ↵jam@chromium.org2011-02-181-0/+1
| | | | | | | | | | | | | | | break by adding a dependency from content_browser to WebKit.gyp (TabContents uses WebView's zoom constants and helper functions). TBR=avi Review URL: http://codereview.chromium.org/6546013 TBR=jam@chromium.org Review URL: http://codereview.chromium.org/6538058 TBR=jam@chromium.org Review URL: http://codereview.chromium.org/6541028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75406 0039d316-1c4b-4281-b951-d872f2087c98
* Register Application Restart with Windows Restart Manager on browser_main ↵msw@chromium.org2011-02-185-65/+120
| | | | | | | | | | | startup for Windows Vista / Server 2008 and beyond. This launches Chrome and restores tabs if the computer is restarted as the result of an update. Make changes to support necessary CommandLine operations. Other minor cleanup and refactoring. BUG=70824 TEST=Reboot from update or ::ExitWindowsEx(EWX_RESTARTAPPS... Chrome should restart and restore tabs on login. Test launching Chrome with a variety of command-line switches and arguments. Review URL: http://codereview.chromium.org/6462024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75405 0039d316-1c4b-4281-b951-d872f2087c98
* Set the minimum timer interval on a per-page basis, and adjust it whenkbr@google.com2011-02-187-4/+52
| | | | | | | | | | | | | | | tabs are brought to the foreground and sent to the background. This CL does not actually increase the background timer interval. That will be done separately, so that it can easily be reverted without removing all of the associated code. BUG=66078 TEST=none (tested manually with minimal test case) Review URL: http://codereview.chromium.org/6532012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75404 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor WebResourceService class, making it more generic. Move all the ↵zmo@google.com2011-02-1819-545/+651
| | | | | | | | | | | | | | | promo-related code into a new PromoResourceService class that inherits WebResourceService. This refactoring will allow us to re-use WebResourceService class for GPU Blacklist updates purpose. This CL tries to minimize the code change and adds no new logic. BUG=68802 TEST=unittest,promo functions working fine as before. Review URL: http://codereview.chromium.org/6542003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75403 0039d316-1c4b-4281-b951-d872f2087c98
* Add field trial for A/B testing of SSL False Start.mbelshe@chromium.org2011-02-184-0/+61
| | | | | | | | | | | | | Enable two histograms for measurement: - measure PLT differences - measure SSL_Connect_Latency conditioned on the test. BUG=none TEST=none Review URL: http://codereview.chromium.org/6544004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75402 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a regression when switching the options pane to use Dom UI: when a user ↵robertshield@chromium.org2011-02-181-0/+6
| | | | | | | | | | | clicks the "Make Chrome my default browser" button, we should reset the browser.check_default_browser to true. BUG=73208 TEST=Follow steps listed in bug, observe that the infobar again shows up. Review URL: http://codereview.chromium.org/6542018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75401 0039d316-1c4b-4281-b951-d872f2087c98
* DownloadFile no longer keeps track of whether or not the final rename has ↵ahendrickson@chromium.org2011-02-188-130/+59
| | | | | | | | | | | | | | | occurred. Instead, DownloadFileManager puts the DownloadFile in a new map when it has the final name. This is a step towards moving the 'final rename' determination happen in the UI thread. BUG=None TEST=None Review URL: http://codereview.chromium.org/6480079 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75400 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 75371 - Try to fix the Win Builder (dbg)(shared) build break by ↵jam@chromium.org2011-02-181-1/+0
| | | | | | | | | | | | adding a dependency from content_browser to WebKit.gyp (TabContents uses WebView's zoom constants and helper functions). TBR=avi Review URL: http://codereview.chromium.org/6546013 TBR=jam@chromium.org Review URL: http://codereview.chromium.org/6538058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75399 0039d316-1c4b-4281-b951-d872f2087c98
* Mini WebKit roll 78998:79002 to pull updated test expectations.mnaganov@chromium.org2011-02-181-1/+1
| | | | | | | | | | TBR=atwilson BUG=none TEST=none Review URL: http://codereview.chromium.org/6469055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75397 0039d316-1c4b-4281-b951-d872f2087c98
* Remember the appropriate previous directory when opening a select folder dialog.dmazzoni@chromium.org2011-02-181-3/+1
| | | | | | | | | BUG=72579 TEST=manual testing, trybots Review URL: http://codereview.chromium.org/6487001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75396 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 75393 - Cancel prerender if any of the visited URLs are https.cbentzel@chromium.org2011-02-188-117/+28
| | | | | | | | | | | | | | BUG=72486 TEST=added new unit_tests and browser_tests Manual Test: With preendering enabled, do a search for "yahoo mail". Prerendering should be canceled due to https. Review URL: http://codereview.chromium.org/6523062 TBR=cbentzel@chromium.org Review URL: http://codereview.chromium.org/6543010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75395 0039d316-1c4b-4281-b951-d872f2087c98
* Set the accessibility ViewProp in OnCreate in addition to Show, becausedmazzoni@chromium.org2011-02-181-0/+6
| | | | | | | | | | | | Show doesn't necessarily get called when a window is opened directly to a url (as opposed to a new tab page). BUG=70657 TEST=manual testing Review URL: http://codereview.chromium.org/6538038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75394 0039d316-1c4b-4281-b951-d872f2087c98
* Cancel prerender if any of the visited URLs are https.cbentzel@chromium.org2011-02-188-28/+117
| | | | | | | | | | | BUG=72486 TEST=added new unit_tests and browser_tests Manual Test: With preendering enabled, do a search for "yahoo mail". Prerendering should be canceled due to https. Review URL: http://codereview.chromium.org/6523062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75393 0039d316-1c4b-4281-b951-d872f2087c98
* Temp dir cleanup:grt@chromium.org2011-02-1822-265/+297
| | | | | | | | | | | | | | | | - use ScopedTempDir in work items that need backup space for rollback - all work items that need backup space take a parent dir in which they create temp dirs - use ScopedTempDir in a few other places - renamed some parameters in certain functions so that the same name is used everywhere While I was at it, I couldn't help but replace Append(UTF8ToWide(version.GetString())) with the more pleasing AppendASCII(version.GetString()) BUG=70368 TEST=existing tests in installer_util_unittests cover the changes Review URL: http://codereview.chromium.org/6538025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75392 0039d316-1c4b-4281-b951-d872f2087c98
* Suppression for AccessibilityController::shouldDumpAccessibiltyNotificationscbentzel@chromium.org2011-02-181-0/+8
| | | | | | | | | BUG=73415 TEST=waterfall.sh match Review URL: http://codereview.chromium.org/6538056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75391 0039d316-1c4b-4281-b951-d872f2087c98
* Check and invalidate cached credentials if they were used for preemptive ↵asanka@chromium.org2011-02-187-25/+84
| | | | | | | | | | | authentication and were rejected by the server. BUG=72589 TEST=net_unittests --gtest_filter=HttpAuthHandler*.HandleAnotherChallenge Review URL: http://codereview.chromium.org/6525035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75390 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 75347 - Revert 75306 - Force native frames to repaint when ↵mirandac@chromium.org2011-02-181-12/+11
| | | | | | | | | | | | | | | | | | | OnNCActivate is called. With a profile menu button added to the GlassBrowserFrameView, failure to trigger the frame repaint means that the button will remain in the active state even when the frame has been deactivated. DesktopNotification tests failing on win full - speculative revert since this is the only CL in the range that seems possibly related. BUG=none TEST=frames behave normally in Aero mode, when activated and deactivated. Review URL: http://codereview.chromium.org/6507044 TBR=mirandac@chromium.org Review URL: http://codereview.chromium.org/6546006 TBR=mattm@chromium.org Review URL: http://codereview.chromium.org/6541023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75389 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 78845:78997mnaganov@chromium.org2011-02-181-1/+1
| | | | | | | | | | TBR=atwilson TEST=none BUG=none Review URL: http://codereview.chromium.org/6541022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75388 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor how surfaces are acquired for GPU compositing.backer@chromium.org2011-02-1813-67/+153
| | | | | | | | | | | | | | | | | Rather than have a couple of nasty #if defined blocks, push the code down into the platform specific RenderWidgetHostView layer. Added support for releasing surfaces: - if renderer crashes, RenderWidgetHostView releases the surfaces (no change from previous code) - if gpu process crashes, the GpuProcessHostUIShim releases the surfaces (introduced in this patch) - if the channel between the renderer and gpu process falls, the gpu process asks the GpuProcessHostUIShim to release the surface BUG=none TEST=by hand 3D css and WebGL on win, max, linux, and linux views Review URL: http://codereview.chromium.org/6462034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75387 0039d316-1c4b-4281-b951-d872f2087c98
* Call method CheckTitle to verify title of the active tab.jnd@chromium.org2011-02-181-6/+2
| | | | | | | | | | | | | After opening a new tab, the tab may not be ready to read the title. The method CheckTitle checks title within the certain timeout. It may not a good solution but workable and existing code already uses it, so I think we use it to fix this bug. BUG=46781 TEST=UnloadTest.BrowserCloseBeforeUnloadOK. Review URL: http://codereview.chromium.org/6544015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75386 0039d316-1c4b-4281-b951-d872f2087c98
* Fix key missing problem on windowshclam@chromium.org2011-02-181-0/+2
| | | | | | | | | | | | | Initialize INPUT struct. The dwFlags member of INPUT struct is not properly initialized so sometimes the key event is interpreted as a key up and thus keys are missed. BUG=70167 TEST=keyboard input is fine on windows Review URL: http://codereview.chromium.org/6542015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75385 0039d316-1c4b-4281-b951-d872f2087c98
* Switch the build over to using the base test runner to make sure base and ↵thomasvl@chromium.org2011-02-181-1/+5
| | | | | | | | | | ICU are started up right. BUG=72633 TEST=none Review URL: http://codereview.chromium.org/6538022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75384 0039d316-1c4b-4281-b951-d872f2087c98
* Implemented a policy to match the ClearSiteDataOnExit pref.pastarmovj@chromium.org2011-02-187-4/+52
| | | | | | | | | | | | | When set this policy overrides the user settings for that pref. No UI changes have been made to ContentSettings.xib only wired the enabled flag to the managed property of the underlaying pref. BUG=59775 TEST=Manually set the policy and check if the corresponding UI element is disabled and correspond to the policy state. Review URL: http://codereview.chromium.org/6534021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75383 0039d316-1c4b-4281-b951-d872f2087c98
* Widen BackgroundApplicationListModelTest suppression further for Mac memory.cbentzel@chromium.org2011-02-181-0/+1
| | | | | | | | | BUG=73358 TEST=waterfall.sh match no longer shows stack Review URL: http://codereview.chromium.org/6469051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75382 0039d316-1c4b-4281-b951-d872f2087c98
* Fix service process to not idle-timeout if Chromoting is enabled.wez@chromium.org2011-02-181-0/+5
| | | | | | | | | | | | | | | | When Chromoting is enabled via Chrome, the service process is started if necessary and notified that the Chromoting service has become enabled. When the service process is later auto-started (or run manually) it will initialize Chromoting, which detects that it is enabled and starts up, but fails to inform the service process that it's enabled, so the process waits a while and then exits. BUG=73168 TEST=Enable Chromoting in Chrome. Kill the existing service process and start a new one manually. Ensure that the new one runs for at least two minutes without quitting. Review URL: http://codereview.chromium.org/6532023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75381 0039d316-1c4b-4281-b951-d872f2087c98
* WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. ↵tfarina@chromium.org2011-02-1821-62/+62
| | | | | | | | | | | Part 4. BUG=59945, 59946 TEST=trybots Review URL: http://codereview.chromium.org/6532045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75380 0039d316-1c4b-4281-b951-d872f2087c98
* Initialize media library on service process startup.wez@chromium.org2011-02-182-5/+28
| | | | | | | | | BUG=73166 TEST=Enable Chromoting Host in Chrome, and try to connect to it. The service process should not crash trying to retrieve the VP8 codec. Review URL: http://codereview.chromium.org/6539017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75379 0039d316-1c4b-4281-b951-d872f2087c98
* Remove unused render_view_ field from GeolocationDispatcher class.jknotten@chromium.org2011-02-181-3/+0
| | | | | | | | | | | | GeolocationDispatcher::render_view_ is never used or assigned to, so remove unnecessary field. BUG=None TEST=Compile Review URL: http://codereview.chromium.org/6507045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75376 0039d316-1c4b-4281-b951-d872f2087c98