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

Unified Diff: content/child/websocket_dispatcher.h

Issue 2000113002: Delegate WebSocket message handlers to the loading task runner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a comment Created 4 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 | « content/child/child_thread_impl.cc ('k') | content/child/websocket_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/websocket_dispatcher.h
diff --git a/content/child/websocket_dispatcher.h b/content/child/websocket_dispatcher.h
index e40053de41ca0a7e328185e93e110a4a8be932ba..bd2fd50d6de22a6c894b34120fb5e0f6ed0e0144 100644
--- a/content/child/websocket_dispatcher.h
+++ b/content/child/websocket_dispatcher.h
@@ -12,6 +12,7 @@
#include "base/compiler_specific.h"
#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
#include "ipc/ipc_listener.h"
namespace content {
@@ -27,6 +28,8 @@ class WebSocketDispatcher : public IPC::Listener {
WebSocketDispatcher();
~WebSocketDispatcher() override;
+ static bool CanHandleMessage(const IPC::Message& msg);
+
// Returns a unique channel id
int AddBridge(WebSocketBridge* bridge);
void RemoveBridge(int channel_id);
@@ -34,11 +37,16 @@ class WebSocketDispatcher : public IPC::Listener {
// IPC::Listener implementation.
bool OnMessageReceived(const IPC::Message& msg) override;
+ base::WeakPtr<WebSocketDispatcher> GetWeakPtr() {
+ return weak_ptr_factory_.GetWeakPtr();
+ }
+
private:
WebSocketBridge* GetBridge(int channel_id, uint32_t type);
std::map<int, WebSocketBridge*> bridges_;
int channel_id_max_;
+ base::WeakPtrFactory<WebSocketDispatcher> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(WebSocketDispatcher);
};
« no previous file with comments | « content/child/child_thread_impl.cc ('k') | content/child/websocket_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698