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

Unified Diff: chrome/renderer/render_thread.h

Issue 202058: WebSocket implementation in Chromium. (Closed)
Patch Set: update Created 11 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 | « chrome/common/net/socket_stream.h ('k') | chrome/renderer/render_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_thread.h
diff --git a/chrome/renderer/render_thread.h b/chrome/renderer/render_thread.h
index e60c91b198a9c1b9a13f19739eea240e0a562572..32d96f60c96e2db426ca070a4321d12e11f18986 100644
--- a/chrome/renderer/render_thread.h
+++ b/chrome/renderer/render_thread.h
@@ -28,6 +28,7 @@ class RenderDnsMaster;
class RendererHistogram;
class RendererWebKitClientImpl;
class SkBitmap;
+class SocketStreamDispatcher;
class UserScriptSlave;
class URLPattern;
@@ -114,6 +115,10 @@ class RenderThread : public RenderThreadBase,
return appcache_dispatcher_.get();
}
+ SocketStreamDispatcher* socket_stream_dispatcher() const {
+ return socket_stream_dispatcher_.get();
+ }
+
bool plugin_refresh_allowed() const { return plugin_refresh_allowed_; }
// Do DNS prefetch resolution of a hostname.
@@ -203,6 +208,7 @@ class RenderThread : public RenderThreadBase,
scoped_ptr<WebKit::WebStorageEventDispatcher> dom_storage_event_dispatcher_;
scoped_refptr<DBMessageFilter> db_message_filter_;
+ scoped_ptr<SocketStreamDispatcher> socket_stream_dispatcher_;
#if defined(OS_POSIX)
scoped_refptr<IPC::ChannelProxy::MessageFilter>
« no previous file with comments | « chrome/common/net/socket_stream.h ('k') | chrome/renderer/render_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698