summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process.h
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/browser/browser_process.h
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/browser/browser_process.h')
-rw-r--r--chrome/browser/browser_process.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h
index 4257c98..99d3664 100644
--- a/chrome/browser/browser_process.h
+++ b/chrome/browser/browser_process.h
@@ -195,10 +195,6 @@ class BrowserProcess {
// the IO thread.
virtual bool plugin_finder_disabled() const = 0;
- // Trigger an asynchronous check to see if we have the inspector's files on
- // disk.
- virtual void CheckForInspectorFiles() = 0;
-
#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
// This will start a timer that, if Chrome is in persistent mode, will check
// whether an update is available, and if that's the case, restart the
@@ -210,11 +206,6 @@ class BrowserProcess {
virtual void StartAutoupdateTimer() = 0;
#endif
- // Return true iff we found the inspector files on disk. It's possible to
- // call this function before we have a definite answer from the disk. In that
- // case, we default to returning true.
- virtual bool have_inspector_files() const = 0;
-
virtual ChromeNetLog* net_log() = 0;
#if defined(IPC_MESSAGE_LOG_ENABLED)