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

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

Issue 2647703007: Migrate Timer to TaskRunnerTimer in DOMWebSocket. (Closed)
Patch Set: Migrate Timer to TaskRunnerTimer in DOMWebSocket. Created 3 years, 11 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 | « no previous file | third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
diff --git a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
index 18b4fdf52cc3114a2ec1e27337e19f034ffce824..79548f0d9303d4d515b01ef48a483f6615ca1860 100644
--- a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
+++ b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
@@ -188,7 +188,7 @@ class MODULES_EXPORT DOMWebSocket : public EventTargetWithInlineData,
State m_state;
Member<EventTarget> m_target;
HeapDeque<Member<Event>> m_events;
- Timer<EventQueue> m_resumeTimer;
+ TaskRunnerTimer<EventQueue> m_resumeTimer;
};
enum WebSocketSendType {
@@ -253,7 +253,7 @@ class MODULES_EXPORT DOMWebSocket : public EventTargetWithInlineData,
String m_extensions;
Member<EventQueue> m_eventQueue;
- Timer<DOMWebSocket> m_bufferedAmountConsumeTimer;
+ TaskRunnerTimer<DOMWebSocket> m_bufferedAmountConsumeTimer;
};
} // namespace blink
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698