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

Unified Diff: content/browser/browser_main.h

Issue 8392042: Split BrowserThread into public API and private implementation, step 1. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years, 2 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
« no previous file with comments | « content/browser/browser_child_process_host.cc ('k') | content/browser/browser_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_main.h
diff --git a/content/browser/browser_main.h b/content/browser/browser_main.h
index ec1121fec7792995fe79384a59175f05a2606dfa..8b6d3a0181848c6faccea65e7721294be9283bd5 100644
--- a/content/browser/browser_main.h
+++ b/content/browser/browser_main.h
@@ -10,7 +10,6 @@
#include "base/memory/scoped_ptr.h"
#include "content/common/content_export.h"
-class BrowserThread;
class CommandLine;
class HighResolutionTimerManager;
class MessageLoop;
@@ -20,6 +19,10 @@ namespace base {
class SystemMonitor;
}
+namespace content {
+class BrowserThreadImpl;
+}
+
namespace net {
class NetworkChangeNotifier;
}
@@ -120,7 +123,7 @@ class CONTENT_EXPORT BrowserMainParts {
scoped_ptr<base::SystemMonitor> system_monitor_;
scoped_ptr<HighResolutionTimerManager> hi_res_timer_manager_;
scoped_ptr<net::NetworkChangeNotifier> network_change_notifier_;
- scoped_ptr<BrowserThread> main_thread_;
+ scoped_ptr<BrowserThreadImpl> main_thread_;
DISALLOW_COPY_AND_ASSIGN(BrowserMainParts);
};
« no previous file with comments | « content/browser/browser_child_process_host.cc ('k') | content/browser/browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698