summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_browser_main_win.h
diff options
context:
space:
mode:
authorgbillock@chromium.org <gbillock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-19 01:29:02 +0000
committergbillock@chromium.org <gbillock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-19 01:29:02 +0000
commit8b60ca72e8ccc0d3f6790f65b655e4fbe5f078c0 (patch)
treedae4d632f21fd5e1c7898fefd1e2c3731cfa81bb /chrome/browser/chrome_browser_main_win.h
parentef7bcb4cdf3b414d81f5779dc21b4fa149a08d54 (diff)
downloadchromium_src-8b60ca72e8ccc0d3f6790f65b655e4fbe5f078c0.zip
chromium_src-8b60ca72e8ccc0d3f6790f65b655e4fbe5f078c0.tar.gz
chromium_src-8b60ca72e8ccc0d3f6790f65b655e4fbe5f078c0.tar.bz2
[StorageMonitor] Move StorageMonitor ownership to BrowserProcessImpl
This preserves all gross timings of setup and teardown of the storage monitor. BUG=None Review URL: https://chromiumcodereview.appspot.com/16703025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212487 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_browser_main_win.h')
-rw-r--r--chrome/browser/chrome_browser_main_win.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/chrome/browser/chrome_browser_main_win.h b/chrome/browser/chrome_browser_main_win.h
index 6da509e..496d234 100644
--- a/chrome/browser/chrome_browser_main_win.h
+++ b/chrome/browser/chrome_browser_main_win.h
@@ -7,16 +7,10 @@
#ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_
#define CHROME_BROWSER_CHROME_BROWSER_MAIN_WIN_H_
-#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chrome_browser_main.h"
class CommandLine;
-namespace chrome {
-class StorageMonitorWin;
-} // namespace chrome
-
-
// Handle uninstallation when given the appropriate the command-line switch.
// If |chrome_still_running| is true a modal dialog will be shown asking the
// user to close the other chrome instance.
@@ -34,7 +28,6 @@ class ChromeBrowserMainPartsWin : public ChromeBrowserMainParts {
virtual void PreMainMessageLoopStart() OVERRIDE;
virtual int PreCreateThreads() OVERRIDE;
virtual void PostMainMessageLoopRun() OVERRIDE;
- virtual void PreProfileInit() OVERRIDE;
// ChromeBrowserMainParts overrides.
virtual void ShowMissingLocaleMessageBox() OVERRIDE;
@@ -68,8 +61,6 @@ class ChromeBrowserMainPartsWin : public ChromeBrowserMainParts {
static void SetupInstallerUtilStrings();
private:
- scoped_ptr<chrome::StorageMonitorWin> storage_monitor_;
-
DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsWin);
};