summaryrefslogtreecommitdiffstats
path: root/chrome/test/testing_browser_process.h
diff options
context:
space:
mode:
authoryurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-16 13:42:47 +0000
committeryurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-16 13:42:47 +0000
commit40ecc904994be903e4a24d26650739275e5f0f4b (patch)
tree643f495251032ba20b9d66cc151e03d21017593c /chrome/test/testing_browser_process.h
parentb92626f5fba89d0996abfa8955e49e8d88587869 (diff)
downloadchromium_src-40ecc904994be903e4a24d26650739275e5f0f4b.zip
chromium_src-40ecc904994be903e4a24d26650739275e5f0f4b.tar.gz
chromium_src-40ecc904994be903e4a24d26650739275e5f0f4b.tar.bz2
DevToolsManager is a service in the browser process that manages all open developer tools windows. It's supposed to route devtoools messages. Also it will notify DevToolsClient when inspected renderer crashes or when it's changes due to cross-site navigation. Currently when inspected tab is closed it will close devtools window as well.
Devtools state moved from RenderViewHost and WebContentsView to the manager. Please look at devtools_manager.{h,cc} in the first place. Review URL: http://codereview.chromium.org/42076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11727 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/testing_browser_process.h')
-rw-r--r--chrome/test/testing_browser_process.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/test/testing_browser_process.h b/chrome/test/testing_browser_process.h
index 0cbe91b..e2fff16 100644
--- a/chrome/test/testing_browser_process.h
+++ b/chrome/test/testing_browser_process.h
@@ -75,6 +75,10 @@ class TestingBrowserProcess : public BrowserProcess {
return NULL;
}
+ virtual DevToolsManager* devtools_manager() {
+ return NULL;
+ }
+
virtual ClipboardService* clipboard_service() {
return NULL;
}