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

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

Issue 2487493004: Support external task cancellation mechanisms in base::Callback::IsCancelled (Closed)
Patch Set: s/BindCancellationChecker/CallbackCancellationTraits/ Created 4 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/platform/WebTaskRunner.h
diff --git a/third_party/WebKit/Source/platform/WebTaskRunner.h b/third_party/WebKit/Source/platform/WebTaskRunner.h
index d3848db0c7e3de8a0b9dbb64ce33a716b870ff9f..8d8e0be63e3c80d2c05a1051b8d9e838988b5cc2 100644
--- a/third_party/WebKit/Source/platform/WebTaskRunner.h
+++ b/third_party/WebKit/Source/platform/WebTaskRunner.h
@@ -51,8 +51,9 @@ class BLINK_PLATFORM_EXPORT TaskHandle {
TaskHandle(TaskHandle&&);
TaskHandle& operator=(TaskHandle&&);
- private:
class Runner;
+
+ private:
friend class WebTaskRunner;
explicit TaskHandle(RefPtr<Runner>);

Powered by Google App Engine
This is Rietveld 408576698