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

Unified Diff: third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h

Issue 2639953002: Worker: Migrate Timer to TaskRunnerTimer in InProcessWorkerObjectProxy (Closed)
Patch Set: WIP 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
Index: third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
index 5bb45db376a6ee617da6c3ec02e0a8ee28f2a168..810dfa0b0876e911b7097f83fc4639a2f852705e 100644
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
@@ -95,7 +95,7 @@ class CORE_EXPORT InProcessWorkerObjectProxy : public ThreadedObjectProxyBase {
// Used for checking pending activities on the worker global scope. This is
// cancelled when the worker global scope is destroyed.
- std::unique_ptr<Timer<InProcessWorkerObjectProxy>> m_timer;
+ std::unique_ptr<TaskRunnerTimer<InProcessWorkerObjectProxy>> m_timer;
// The default interval duration of the timer. This is usually
// kDefaultIntervalInSec but made as a member variable for testing.

Powered by Google App Engine
This is Rietveld 408576698