Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(446)

Unified Diff: chrome/browser/chrome_browser_main_linux.h

Issue 16703025: [StorageMonitor] Move StorageMonitor ownership to BrowserProcessImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chrome_browser_main_linux.h
diff --git a/chrome/browser/chrome_browser_main_linux.h b/chrome/browser/chrome_browser_main_linux.h
index cba0e1e2448c0b0a5d5bc01004d360ed86b4d33f..d0592b31e8b820cab1eee234ec58e10580ccb843 100644
--- a/chrome/browser/chrome_browser_main_linux.h
+++ b/chrome/browser/chrome_browser_main_linux.h
@@ -11,12 +11,6 @@
#include "base/memory/scoped_ptr.h"
Lei Zhang 2013/06/27 00:09:38 remove
Greg Billock 2013/06/27 18:25:43 Done.
#include "chrome/browser/chrome_browser_main_posix.h"
-#if !defined(OS_CHROMEOS)
-namespace chrome {
-class StorageMonitorLinux;
-}
-#endif
-
class ChromeBrowserMainPartsLinux : public ChromeBrowserMainPartsPosix {
public:
explicit ChromeBrowserMainPartsLinux(
@@ -25,13 +19,8 @@ class ChromeBrowserMainPartsLinux : public ChromeBrowserMainPartsPosix {
// ChromeBrowserMainParts overrides.
virtual void PreProfileInit() OVERRIDE;
- virtual void PostMainMessageLoopRun() OVERRIDE;
private:
-#if !defined(OS_CHROMEOS)
- scoped_ptr<chrome::StorageMonitorLinux> storage_monitor_;
-#endif
-
DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsLinux);
};

Powered by Google App Engine
This is Rietveld 408576698