summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authortony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-23 20:09:21 +0000
committertony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-23 20:09:21 +0000
commit4747caf2e94287e3bc0974a619cbb5b03c799de3 (patch)
tree94186d3c6331b98aa759d3d504222151c00c0ca8 /chrome/test
parentbd3f4b3da8395a6f2fde983f425f3accad36f6ab (diff)
downloadchromium_src-4747caf2e94287e3bc0974a619cbb5b03c799de3.zip
chromium_src-4747caf2e94287e3bc0974a619cbb5b03c799de3.tar.gz
chromium_src-4747caf2e94287e3bc0974a619cbb5b03c799de3.tar.bz2
Remove the check for inspector files since they're in resources.pak now.
In r79038, I moved the inspector files into resources.pak so we no longer need to check to see if inspector is available (it should always be there). Also fix chrome --diagnostics to check for resources.pak rather than the resources/Inspector dir. BUG=77167 TEST=Delete resources/inspector from disk, start chrome and right click on a page. Inspect Element should be there and work. Review URL: http://codereview.chromium.org/6726027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79170 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/testing_browser_process.cc4
-rw-r--r--chrome/test/testing_browser_process.h2
2 files changed, 0 insertions, 6 deletions
diff --git a/chrome/test/testing_browser_process.cc b/chrome/test/testing_browser_process.cc
index 72b9976..5546417 100644
--- a/chrome/test/testing_browser_process.cc
+++ b/chrome/test/testing_browser_process.cc
@@ -210,10 +210,6 @@ bool TestingBrowserProcess::plugin_finder_disabled() const {
return false;
}
-bool TestingBrowserProcess::have_inspector_files() const {
- return true;
-}
-
ChromeNetLog* TestingBrowserProcess::net_log() {
return NULL;
}
diff --git a/chrome/test/testing_browser_process.h b/chrome/test/testing_browser_process.h
index a6aee39..6a3d215 100644
--- a/chrome/test/testing_browser_process.h
+++ b/chrome/test/testing_browser_process.h
@@ -133,8 +133,6 @@ class TestingBrowserProcess : public BrowserProcess {
virtual void StartAutoupdateTimer() {}
#endif
- virtual bool have_inspector_files() const;
-
virtual ChromeNetLog* net_log();
#if defined(IPC_MESSAGE_LOG_ENABLED)