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

Unified Diff: third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h

Issue 1456463002: [WebSocket] Remove release assertions that are no longer needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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: third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
diff --git a/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h b/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
index 15ff20fe3aa540c50698588f17b97510c434060b..a14a36df4e31c660e846bc7029f694160fdaa460 100644
--- a/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
+++ b/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
@@ -123,7 +123,6 @@ public:
// Bridge for Peer. Running on the worker thread.
class Bridge final : public GarbageCollectedFinalized<Bridge> {
WTF_MAKE_NONCOPYABLE(Bridge);
- USING_PRE_FINALIZER(Bridge, peerShouldBeDisconnected);
public:
Bridge(WebSocketChannelClient*, WorkerGlobalScope&);
~Bridge();
@@ -146,7 +145,6 @@ public:
private:
// Returns false if shutdown event is received before method completion.
bool waitForMethodCompletion(PassOwnPtr<ExecutionContextTask>);
- void peerShouldBeDisconnected();
Member<WebSocketChannelClient> m_client;
RefPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;

Powered by Google App Engine
This is Rietveld 408576698