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

Unified Diff: chrome/browser/browser_process_impl.h

Issue 6801008: Websocket to TCP proxy running in a separate thread (only on ChromeOS). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase+minor Created 9 years, 7 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 | « chrome/browser/browser_process.h ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process_impl.h
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
index 069eaf57057c73401ba38c907251db7b22c1d656..577d4ba71b53b914a1a262eae239179dd4daf77b 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -59,6 +59,9 @@ class BrowserProcessImpl : public BrowserProcess,
virtual base::Thread* background_x11_thread();
#endif
virtual WatchDogThread* watchdog_thread();
+#if defined(OS_CHROMEOS)
+ virtual base::Thread* web_socket_proxy_thread();
+#endif
virtual ProfileManager* profile_manager();
virtual PrefService* local_state();
virtual DevToolsManager* devtools_manager();
@@ -130,6 +133,9 @@ class BrowserProcessImpl : public BrowserProcess,
void CreateCacheThread();
void CreateGpuThread();
void CreateWatchdogThread();
+#if defined(OS_CHROMEOS)
+ void CreateWebSocketProxyThread();
+#endif
void CreateTemplateURLModel();
void CreateProfileManager();
void CreateWebDataService();
@@ -186,6 +192,11 @@ class BrowserProcessImpl : public BrowserProcess,
bool created_watchdog_thread_;
scoped_ptr<WatchDogThread> watchdog_thread_;
+#if defined(OS_CHROMEOS)
+ bool created_web_socket_proxy_thread_;
+ scoped_ptr<base::Thread> web_socket_proxy_thread_;
+#endif
+
bool created_profile_manager_;
scoped_ptr<ProfileManager> profile_manager_;
« no previous file with comments | « chrome/browser/browser_process.h ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698