summaryrefslogtreecommitdiffstats
path: root/content/browser
Commit message (Collapse)AuthorAgeFilesLines
* Provide ID of the frame that triggered an event to the webrequest extension.battre@chromium.org2011-07-214-3/+21
| | | | | | | | | | BUG=79734 TEST=no Review URL: http://codereview.chromium.org/7387012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93450 0039d316-1c4b-4281-b951-d872f2087c98
* RenderViewHostDelegate: add missing 'virtual'evan@chromium.org2011-07-211-1/+1
| | | | | | | | | | | Nobody was getting notified when workers crash. (This was caught by a further patch of mine that adds OVERRIDE to users of this file, which would have caught this.) Review URL: http://codereview.chromium.org/7468010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93438 0039d316-1c4b-4281-b951-d872f2087c98
* Delete TabContents::OnCrossSiteResponseevan@chromium.org2011-07-212-11/+0
| | | | | | | | | | | | This code was never called, because TabContents doesn't implement the interface that calls this method. I assume it was moved to the class this was forwarding to. I tried to track down when this happened in the history but we've moved code so many times I couldn't find it. Review URL: http://codereview.chromium.org/7467009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93437 0039d316-1c4b-4281-b951-d872f2087c98
* Updated accelerometer note.avi@chromium.org2011-07-211-1/+5
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/7471040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93434 0039d316-1c4b-4281-b951-d872f2087c98
* Ensures history tab displays a throbber when searching.beaudoin@chromium.org2011-07-219-7/+71
| | | | | | | | | | When performing a long running search in the history, turn on the tab thobber to indicate that an operation is in progress. BUG=14730 TEST=Ensure you have a large browsing history, go to chrome://history, search for something, notice the throbber come on. Review URL: http://codereview.chromium.org/7399007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93392 0039d316-1c4b-4281-b951-d872f2087c98
* Create the correct SiteInstance when restoring tabs that belong to apps.mihaip@chromium.org2011-07-211-2/+1
| | | | | | | | | | BUG=89371 TEST=see bug Review URL: http://codereview.chromium.org/7448012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93337 0039d316-1c4b-4281-b951-d872f2087c98
* Win: Replace native modal cert selector dialog with Views tab constrained ↵mattm@chromium.org2011-07-212-3/+27
| | | | | | | | | | | | | implementation. Handle the "multiple tabs requesting certs for same site" issue. BUG=73223,50710 TEST=Try some sites that use SSL client auth. See bug 73223 for multiple-tabs issue. Review URL: http://codereview.chromium.org/7362008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93323 0039d316-1c4b-4281-b951-d872f2087c98
* Make PageNavigator::OpenURL and TabContentsDelegate::OpenURLFromTab return a ↵jochen@chromium.org2011-07-206-25/+42
| | | | | | | | | | | | | | TabContents The TabContents object is the one in which the URL will be opened if it can be determined immediately. BUG=none TEST=compiles Review URL: http://codereview.chromium.org/7343013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93275 0039d316-1c4b-4281-b951-d872f2087c98
* Implement IAccessibleTable and IAccessibleTableCell so that screendmazzoni@chromium.org2011-07-205-86/+1031
| | | | | | | | | | | readers can access HTML tables. BUG=66874,89220,89221 TEST=Adds new tests. Review URL: http://codereview.chromium.org/7358004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93249 0039d316-1c4b-4281-b951-d872f2087c98
* Disallow gpu access if preliminary gpu info collection fails.zmo@google.com2011-07-202-2/+5
| | | | | | | | | | It's likely something seriously wrong with the graphics driver if preliminary gpu info collection fails. BUG=89358 TEST=bots green Review URL: http://codereview.chromium.org/7472002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93236 0039d316-1c4b-4281-b951-d872f2087c98
* Adding AudioInputDeviceManager.mflodman@google.com2011-07-204-0/+855
| | | | | | | | | | | | | | | | | AudioIndputDeviceManager is responsible for tracking which devices has been opened, normally by WebKit. AudioInputDeviceManager is called from MediaStreamManager when a user has approved a webpage to use the audio input device. AudioInputRendererHost will call AudioInputDeviceManager asking for which device to start, given the session id created when opening the device. This patch is one of the patches to add support for WhatWG peer connection API. This patch replaces 7081002 previously uploaded by xians. BUG=none TEST=unit_tests Review URL: http://codereview.chromium.org/7307021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93224 0039d316-1c4b-4281-b951-d872f2087c98
* Exit cleanly when sending kZygoteMagic failed.oshima@google.com2011-07-201-1/+2
| | | | | | | | | | | | | | | | ChromeOS may kill chrome right after process starts (when a user closes lid right away for example), and sending magic number to browser process can fail. Instead of CHECK, exit normally on chromeos. BUG=chromium-os:17606 TEST=autotest will not crash with session manager sending SIGTERM Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=93171 Review URL: http://codereview.chromium.org/7433011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93222 0039d316-1c4b-4281-b951-d872f2087c98
* Deprecate Profile::GetDefaultRequestContext().willchan@chromium.org2011-07-204-7/+7
| | | | | | | | | | | | Make it private and establish a friend whitelist for existing users. BUG=64339 TEST=none Review URL: http://codereview.chromium.org/7438002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93200 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: get rid of TabContentsWrapper dependencies.pfeldman@chromium.org2011-07-204-33/+64
| | | | | | | | | BUG= TEST= Review URL: http://codereview.chromium.org/7458016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93188 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: bulk move of legacy protocol back to chrome/.pfeldman@chromium.org2011-07-2025-3219/+10
| | | | | | Review URL: http://codereview.chromium.org/7458015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93182 0039d316-1c4b-4281-b951-d872f2087c98
* Add a PluginList::stale() method that returns true if the list of plugins ↵bauerb@chromium.org2011-07-201-2/+2
| | | | | | | | | | | | hasn't been loaded yet, or has been invalidated. BUG=69516 TEST=no dcheck Review URL: http://codereview.chromium.org/7399022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93180 0039d316-1c4b-4281-b951-d872f2087c98
* Follow up to r93173: fixing check_deps and clangpfeldman@chromium.org2011-07-206-4/+9
| | | | | | Review URL: http://codereview.chromium.org/7453019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93176 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: move devtools_window to chrome/, remove most chrome/ dependencies ↵pfeldman@chromium.org2011-07-2020-955/+136
| | | | | | | | | | | from devtools_manager. BUG= TEST= Review URL: http://codereview.chromium.org/7429006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93173 0039d316-1c4b-4281-b951-d872f2087c98
* The test fails due to a console messages arriving sometimes before the ↵yurys@chromium.org2011-07-201-1/+2
| | | | | | | | | | | | | | console evaluation result. See http://chromesshgw.corp.google.com/i/chromium/builders/Linux%20Builder%20%28ChromiumOS%29/builds/9891/steps/interactive_ui_tests/logs/InspectSharedWorker TBR=pfeldman BUG=89845 TEST=WorkerDevToolsSanityTest.InspectSharedWorker Review URL: http://codereview.chromium.org/7453018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93172 0039d316-1c4b-4281-b951-d872f2087c98
* Exit cleanly when sending kZygoteMagic failed.oshima@google.com2011-07-201-0/+8
| | | | | | | | | | | | | | ChromeOS may kill chrome right after process starts (when a user closes lid right away for example), and sending magic number to browser process can fail. Instead of CHECK, exit normally on chromeos. BUG=chromium-os:17606 TEST=autotest will not crash with session manager sending SIGTERM Review URL: http://codereview.chromium.org/7433011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93171 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: add sanity test for shared worker inspectionyurys@chromium.org2011-07-203-30/+152
| | | | | | | | | | | Test that DevTools window can be opened for a shared worker and console will allow to evaluate expressions in the worker global context. BUG=None TEST=WorkerDevToolsSanityTest.InspectSharedWorker Review URL: http://codereview.chromium.org/7433009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93170 0039d316-1c4b-4281-b951-d872f2087c98
* some cleanup for base/stl_utildilmah@chromium.org2011-07-1919-19/+19
| | | | | | | | | | | | | removed unused/irrelevant functions removed irrelevant comments Moved stl_util-inl.h => stl_util.h BUG=None TEST=None Review URL: http://codereview.chromium.org/7342047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93110 0039d316-1c4b-4281-b951-d872f2087c98
* Collect stats on how many users see mixed scripting on google.com, so we cancevans@chromium.org2011-07-191-0/+6
| | | | | | | be confident in blocking it without annoying a huge percentage of users. Review URL: http://codereview.chromium.org/7453002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93102 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 93094 - Initial sensor event provider for testing views screen rotationrobertshield@chromium.org2011-07-194-155/+0
| | | | | | | | | | | | | | | | | The sensors API will unify various types of sensor data into a set of channels, each of which provides change events and periodic updates. This version of the API is intended only to support the experimental screen rotation code and is not for general use. In particular, the final listener will declare generic |OnSensorChange| and |OnSensorUpdate| methods, rather than the special-purpose |OnScreenOrientationChange|. BUG=none TEST=manual with http://codereview.chromium.org/7273073/ Review URL: http://codereview.chromium.org/7366011 TBR=cwolfe@chromium.org Review URL: http://codereview.chromium.org/7455002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93097 0039d316-1c4b-4281-b951-d872f2087c98
* Marking ResourceDispatcherTest.CrossSiteNoUnloadOn204 flaky on Windows.grt@chromium.org2011-07-191-1/+8
| | | | | | | | | BUG=80596 TEST=ui_tests TBR=robertshield@chromium.org Review URL: http://codereview.chromium.org/7452001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93096 0039d316-1c4b-4281-b951-d872f2087c98
* Initial sensor event provider for testing views screen rotationcwolfe@chromium.org2011-07-194-0/+155
| | | | | | | | | | | | | | The sensors API will unify various types of sensor data into a set of channels, each of which provides change events and periodic updates. This version of the API is intended only to support the experimental screen rotation code and is not for general use. In particular, the final listener will declare generic |OnSensorChange| and |OnSensorUpdate| methods, rather than the special-purpose |OnScreenOrientationChange|. BUG=none TEST=manual with http://codereview.chromium.org/7273073/ Review URL: http://codereview.chromium.org/7366011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93094 0039d316-1c4b-4281-b951-d872f2087c98
* Take two at splitting result codes between content and chrome.dpranke@chromium.org2011-07-198-10/+12
| | | | | | | | | | | | content/common/result_codes.h contains only the codes defined in content. chrome/common/chrome_result_codes.h contains the codes defined in chrome and also includes (for convenience) the content header. R=jam@chromium.org BUG=76699 TEST=everything compiles Review URL: http://codereview.chromium.org/7397004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93082 0039d316-1c4b-4281-b951-d872f2087c98
* Move MHTML code to content, now that download code is moving there.jam@chromium.org2011-07-198-0/+295
| | | | | | | BUG=82782 Review URL: http://codereview.chromium.org/7396029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93041 0039d316-1c4b-4281-b951-d872f2087c98
* Deprecate RegisterProtocolFactory/(Un)RegisterInterceptor.willchan@chromium.org2011-07-192-10/+17
| | | | | | | | | | | | Mark those APIs as private and friend existing uses. BUG=none TEST=none Review URL: http://codereview.chromium.org/7397008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92992 0039d316-1c4b-4281-b951-d872f2087c98
* Remove --enable-p2papi flag.sergeyu@chromium.org2011-07-191-5/+1
| | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/7399030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92940 0039d316-1c4b-4281-b951-d872f2087c98
* Avoid having SavePackageFilePicker keep a reference to SavePackage, to avoid ↵jam@chromium.org2011-07-185-8/+18
| | | | | | | | | interfering with its lifetime. BUG=82782 Review URL: http://codereview.chromium.org/7398003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92918 0039d316-1c4b-4281-b951-d872f2087c98
* DatagramSocket: added NetLog accessor.agayev@chromium.org2011-07-181-0/+5
| | | | | | | | | BUG=60149 TEST=None Review URL: http://codereview.chromium.org/7395033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92904 0039d316-1c4b-4281-b951-d872f2087c98
* Make sure to cancel all URLRequests for a ResourceContext on profile shutdown.willchan@chromium.org2011-07-183-0/+121
| | | | | | | | | | | | ResourceDispatcherHost will not cancel download requests after they've begun. However, when a profile goes away, all of its requests should be cancelled, including the download requests, so that they will not try to access deleted objects. This changelist exposes a new RDH API to cancel all requests associated with a content::ResourceContext. ProfileIOData uses this API to cancel all leftover requests. As of time of writing this changelist, the only leftover requests seem to be download requests. It's conceivable this could change in the future, but currently we assert that the only leftover requests are download requests, in order to help catch leaked requests. BUG=88660 TEST=ResourceDispatcherHost.CancelRequestsForContext Review URL: http://codereview.chromium.org/7398022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92879 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 92870 - Modified cancel and interrupt processing to avoid race with ↵rdsmith@chromium.org2011-07-183-49/+21
| | | | | | | | | | | | | | | | | | | history. Avoid racing with the history callback by unilaterally removing DownloadItem from queues on cancel/interrupt. This keeps the state<->queue correspondence cleaner, and avoids leaving things on queues during shutdown. It might also fix 85408; we'll see :-}. BUG=85408 TEST= Review URL: http://codereview.chromium.org/7294013 TBR=rdsmith@chromium.org Review URL: http://codereview.chromium.org/7401024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92872 0039d316-1c4b-4281-b951-d872f2087c98
* Modified cancel and interrupt processing to avoid race with history.rdsmith@chromium.org2011-07-183-21/+49
| | | | | | | | | | | | | | Avoid racing with the history callback by unilaterally removing DownloadItem from queues on cancel/interrupt. This keeps the state<->queue correspondence cleaner, and avoids leaving things on queues during shutdown. It might also fix 85408; we'll see :-}. BUG=85408 TEST= Review URL: http://codereview.chromium.org/7294013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92870 0039d316-1c4b-4281-b951-d872f2087c98
* Move HostsExtension from TabContents to TaskManagerTabContentsResource which ↵jam@chromium.org2011-07-182-11/+0
| | | | | | | | | is the only place that uses it. BUG=76697 Review URL: http://codereview.chromium.org/7399009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92868 0039d316-1c4b-4281-b951-d872f2087c98
* Modify the Chrome Linux zygote to support a ZygoteForkHelper for flexiblebradchen@google.com2011-07-184-46/+93
| | | | | | | | | | | | | fork implementations. BUG=nativeclient:480 TEST=existing zygote tests Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=92787 Review URL: http://codereview.chromium.org/7397003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92858 0039d316-1c4b-4281-b951-d872f2087c98
* Move save stuff from download helper back to TabContents. This is a revert ↵jam@chromium.org2011-07-186-42/+93
| | | | | | | | | of r80962. BUG=82782 Review URL: http://codereview.chromium.org/7398013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92856 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: add isSharedWorker=true URL parameter to shared worker front-endyurys@chromium.org2011-07-182-7/+12
| | | | | | | | | | | We need to pass an extra URL parameter to let shared worker devtools front-end know that it is opened for shared worker, not for a page. BUG=None TEST=None Review URL: http://codereview.chromium.org/7368002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92853 0039d316-1c4b-4281-b951-d872f2087c98
* Comment cleanup.avi@chromium.org2011-07-181-6/+6
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/7302012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92852 0039d316-1c4b-4281-b951-d872f2087c98
* Fix media code to use initializer-list style for inheritance.scherkus@chromium.org2011-07-184-8/+12
| | | | | | Review URL: http://codereview.chromium.org/7400013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92826 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 92787 - Modify the Chrome Linux zygote to support a ZygoteForkHelper ↵rsleevi@chromium.org2011-07-164-88/+46
| | | | | | | | | | | | | | | | | | | | | for flexible fork implementations. BUG=nativeclient:480 TEST=existing zygote tests Review URL: http://codereview.chromium.org/7397003 TBR=bradchen@google.com Review URL: http://codereview.chromium.org/7400014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92789 0039d316-1c4b-4281-b951-d872f2087c98
* Modify the Chrome Linux zygote to support a ZygoteForkHelper for flexiblebradchen@google.com2011-07-164-46/+88
| | | | | | | | | | | | | | | | fork implementations. BUG=nativeclient:480 TEST=existing zygote tests Review URL: http://codereview.chromium.org/7397003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92787 0039d316-1c4b-4281-b951-d872f2087c98
* Check the child_process_ ptr before access on shutdown, is causing browser ↵elijahtaylor@google.com2011-07-151-1/+1
| | | | | | | | | | crash in NaCl Win64. BUG= http://code.google.com/p/nativeclient/issues/detail?id=2018 TEST= manual win64 nacl, trybots for chrome Review URL: http://codereview.chromium.org/7388021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92763 0039d316-1c4b-4281-b951-d872f2087c98
* [Reverted due to check_deps failure]zea@chromium.org2011-07-155-46/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert 92749 - Fix problem when 'ended' event was fired before stream really ended. That caused impression that rewind does not work. With that change small JS program var a = new Audio("file:///home/enal/temp/click2/click2.wav"); var num_played = 0; a.addEventListener('canplaythrough', function() { a.play(); }); a.addEventListener('ended', function() { num_played ++; if (num_played < 10) { a.currentTime = 0; a.play(); } }); works correctly, you hear 10 clicks one after another, and it takes ~1.5 seconds to play all 10 sounds (one click is 146ms). Current Chrome plays only beginnings of the first 9 clicks and then entire 10th click -- 'ended' event fires too early, so rewind stops audio playback for all clicks but last one. With that fix you can easily create pool of audio objects -- on 'ended' event just add audio object to the pool. Fix consists of 3 parts: 1) For low-latency code path pass entire "audio state" object to the renderer process. That allows renderer take into account number of pending bytes in the buffer. 2) When using low-latency code path renderer not only fills the buffer with data, but also writes length of data into first word of the buffer. That allows host process to pass correct byte counts to renderer. 3) Renderer now keeps track of the earliest time playback can end based on the number of rendered bytes, and will not call 'ended' callback till that time. BUG=http://code.google.com/p/chromium/issues/detail?id=78992 http://codereview.chromium.org/7328030 Review URL: http://codereview.chromium.org/7328030 TBR=enal@chromium.org Review URL: http://codereview.chromium.org/7395014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92753 0039d316-1c4b-4281-b951-d872f2087c98
* Fix problem when 'ended' event was fired before stream really ended.enal@chromium.org2011-07-155-13/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | That caused impression that rewind does not work. With that change small JS program var a = new Audio("file:///home/enal/temp/click2/click2.wav"); var num_played = 0; a.addEventListener('canplaythrough', function() { a.play(); }); a.addEventListener('ended', function() { num_played ++; if (num_played < 10) { a.currentTime = 0; a.play(); } }); works correctly, you hear 10 clicks one after another, and it takes ~1.5 seconds to play all 10 sounds (one click is 146ms). Current Chrome plays only beginnings of the first 9 clicks and then entire 10th click -- 'ended' event fires too early, so rewind stops audio playback for all clicks but last one. With that fix you can easily create pool of audio objects -- on 'ended' event just add audio object to the pool. Fix consists of 3 parts: 1) For low-latency code path pass entire "audio state" object to the renderer process. That allows renderer take into account number of pending bytes in the buffer. 2) When using low-latency code path renderer not only fills the buffer with data, but also writes length of data into first word of the buffer. That allows host process to pass correct byte counts to renderer. 3) Renderer now keeps track of the earliest time playback can end based on the number of rendered bytes, and will not call 'ended' callback till that time. BUG=http://code.google.com/p/chromium/issues/detail?id=78992 http://codereview.chromium.org/7328030 Review URL: http://codereview.chromium.org/7328030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92749 0039d316-1c4b-4281-b951-d872f2087c98
* Keep track of the history's page IDs to avoid navigating to a stale entry.creis@chromium.org2011-07-152-14/+18
| | | | | | | | | | | | | This ensures that a race between an asynchronous back/forward and a navigation in the renderer doesn't confuse NavigationController. BUG=86758 TEST=RenderViewTest.IgnoreStaleNavigations TEST=NavigationControllerTest.InPage_Replace Review URL: http://codereview.chromium.org/7327014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92748 0039d316-1c4b-4281-b951-d872f2087c98
* Move download stuff from download helper back to TabContents. This is ↵jam@chromium.org2011-07-155-2/+44
| | | | | | | | | basically a revert of r85762, with updating for code changes in the meantime. BUG=82782 Review URL: http://codereview.chromium.org/7374008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92747 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r92730, r92731, r92732 ... will land again once I ensure the win ↵dpranke@chromium.org2011-07-158-12/+10
| | | | | | | | | | | | | builds compile. TBR=jam@chromium.org BUG=none TEST= Review URL: http://codereview.chromium.org/7400002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92733 0039d316-1c4b-4281-b951-d872f2087c98
* This change will split the result codes between content and chrome.dpranke@chromium.org2011-07-158-10/+12
| | | | | | | | | | | | | | | This adds a new file into chrome/common and does a lot of renaming. The current version is just a sketch of the headers, and nothing will compile. R=jam@chromium.org BUG=76699 TEST=everything still compiles and runs Review URL: http://codereview.chromium.org/7377010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92730 0039d316-1c4b-4281-b951-d872f2087c98