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

Unified Diff: content/child/blink_platform_impl.h

Issue 690703002: WebThreadImplForMessageLoop to use blink scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding a null check for Sami Created 6 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
« no previous file with comments | « no previous file | content/child/blink_platform_impl.cc » ('j') | no next file with comments »
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 785b0d6418ab422953d6398df517f5bdf7c914c1..afe9d29f11732b96ae5e77415ba1157e19cd129a 100644
--- a/content/child/blink_platform_impl.h
+++ b/content/child/blink_platform_impl.h
@@ -42,6 +42,8 @@ class CONTENT_EXPORT BlinkPlatformImpl
: NON_EXPORTED_BASE(public blink::Platform) {
public:
BlinkPlatformImpl();
+ explicit BlinkPlatformImpl(
+ scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner);
virtual ~BlinkPlatformImpl();
// Platform methods (partial implementation):
@@ -162,6 +164,9 @@ class CONTENT_EXPORT BlinkPlatformImpl
void ResumeSharedTimer();
virtual void OnStartSharedTimer(base::TimeDelta delay) {}
+ protected:
+ scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_;
+
private:
static void DestroyCurrentThread(void*);
@@ -170,9 +175,10 @@ class CONTENT_EXPORT BlinkPlatformImpl
shared_timer_func_();
}
+ void InternalInit();
+
WebThemeEngineImpl native_theme_engine_;
WebFallbackThemeEngineImpl fallback_theme_engine_;
- base::MessageLoop* main_loop_;
base::OneShotTimer<BlinkPlatformImpl> shared_timer_;
void (*shared_timer_func_)();
double shared_timer_fire_time_;
« no previous file with comments | « no previous file | content/child/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698