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

Unified Diff: content/browser/browser_thread.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: g Created 9 years, 8 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: content/browser/browser_thread.h
diff --git a/content/browser/browser_thread.h b/content/browser/browser_thread.h
index 8a67f3ded4a9be93a6b9cf10d6be9bba26a8caed..c26fa8f1ae3c71a30adc2d1c99c9bb07ee6946c3 100644
--- a/content/browser/browser_thread.h
+++ b/content/browser/browser_thread.h
@@ -72,6 +72,13 @@ class BrowserThread : public base::Thread {
BACKGROUND_X11,
#endif
+#if defined(OS_CHROMEOS)
+ // This thread runs websocket to TCP proxy.
+ // TODO(dilmah): remove this thread, instead implement this functionality
+ // as hooks into websocket layer.
+ WEBPROXY,
+#endif
+
// This identifier does not represent a thread. Instead it counts the
// number of well-known threads. Insert new well-known threads before this
// identifier.

Powered by Google App Engine
This is Rietveld 408576698