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

Unified Diff: third_party/WebKit/public/platform/WebTaskRunner.h

Issue 2110363002: Rename SameThreadClosure to Closure (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@TRV_ExplicitWTFBind
Patch Set: Created 4 years, 6 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/public/platform/WebTaskRunner.h
diff --git a/third_party/WebKit/public/platform/WebTaskRunner.h b/third_party/WebKit/public/platform/WebTaskRunner.h
index 2fee34c282bac899ed11747e000304ebdc36392d..acd0e999d8156f2cdbaac73f3234ab6705c38691 100644
--- a/third_party/WebKit/public/platform/WebTaskRunner.h
+++ b/third_party/WebKit/public/platform/WebTaskRunner.h
@@ -65,8 +65,8 @@ public:
void postDelayedTask(const WebTraceLocation&, std::unique_ptr<CrossThreadClosure>, long long delayMs);
// For same-thread posting. Must be called from the associated WebThread.
- void postTask(const WebTraceLocation&, std::unique_ptr<SameThreadClosure>);
- void postDelayedTask(const WebTraceLocation&, std::unique_ptr<SameThreadClosure>, long long delayMs);
+ void postTask(const WebTraceLocation&, std::unique_ptr<Closure>);
+ void postDelayedTask(const WebTraceLocation&, std::unique_ptr<Closure>, long long delayMs);
std::unique_ptr<WebTaskRunner> adoptClone()
{

Powered by Google App Engine
This is Rietveld 408576698