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

Unified Diff: content/child/blink_platform_impl.h

Issue 1225243002: WebWaitableEvent: implement new API with ResetPolicy and InitialState arguments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reflect blink side update Created 5 years, 5 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 | content/child/blink_platform_impl.cc » ('j') | content/child/blink_platform_impl.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/blink_platform_impl.h
diff --git a/content/child/blink_platform_impl.h b/content/child/blink_platform_impl.h
index 6b120c043b9e033823175b9d1e96e82cd22becf6..52bd98b1772bef05e4c0ea7cab850c3d16a6b3a6 100644
--- a/content/child/blink_platform_impl.h
+++ b/content/child/blink_platform_impl.h
@@ -94,7 +94,11 @@ class CONTENT_EXPORT BlinkPlatformImpl
virtual blink::WebThread* createThread(const char* name);
virtual blink::WebThread* currentThread();
virtual void yieldCurrentThread();
+ // TODO(toyoshim): Remove no arguments version after the transition.
virtual blink::WebWaitableEvent* createWaitableEvent();
+ virtual blink::WebWaitableEvent* createWaitableEvent(
+ blink::WebWaitableEvent::Reset reset,
kinuko 2015/07/09 08:05:53 nit: as I commented I prefer ResetPolicy ('reset'
Takashi Toyoshima 2015/07/09 08:18:32 Done.
+ blink::WebWaitableEvent::InitialState state);
virtual blink::WebWaitableEvent* waitMultipleEvents(
const blink::WebVector<blink::WebWaitableEvent*>& events);
virtual void decrementStatsCounter(const char* name);
« no previous file with comments | « no previous file | content/child/blink_platform_impl.cc » ('j') | content/child/blink_platform_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698