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

Side by Side Diff: third_party/WebKit/Source/web/WebKit.cpp

Issue 2402983002: [TimeZoneMonitor] Decouple renderer side impl from content to blink. (Closed)
Patch Set: content_unittests does not need to init mojo edk any more by itself Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 return *initializer; 75 return *initializer;
76 } 76 }
77 77
78 void initialize(Platform* platform) { 78 void initialize(Platform* platform) {
79 Platform::initialize(platform); 79 Platform::initialize(platform);
80 80
81 V8Initializer::initializeMainThread(); 81 V8Initializer::initializeMainThread();
82 82
83 modulesInitializer().initialize(); 83 modulesInitializer().initialize();
84 84
85 if (Platform::isMessageLoopReady())
blundell 2016/10/18 12:32:11 I see, this is why you have initializeMojo() be sa
blundell 2016/10/18 12:32:11 Nit: It seems like you don't need to add Platform:
leonhsl(Using Gerrit) 2016/10/18 14:34:48 Acknowledged.
leonhsl(Using Gerrit) 2016/10/18 14:34:48 I tried (platform->currentThread()) before, and tu
haraken 2016/10/18 19:39:11 I think Platform::currentThread() should work. Wou
leonhsl(Using Gerrit) 2016/10/19 08:47:23 content::TestBlinkWebUnitTestSupport is an impl of
86 initializeMojo();
87
85 // currentThread is null if we are running on a thread without a message loop. 88 // currentThread is null if we are running on a thread without a message loop.
86 if (WebThread* currentThread = platform->currentThread()) { 89 if (WebThread* currentThread = platform->currentThread()) {
87 DCHECK(!s_endOfTaskRunner); 90 DCHECK(!s_endOfTaskRunner);
88 s_endOfTaskRunner = new EndOfTaskRunner; 91 s_endOfTaskRunner = new EndOfTaskRunner;
89 currentThread->addTaskObserver(s_endOfTaskRunner); 92 currentThread->addTaskObserver(s_endOfTaskRunner);
90 } 93 }
91 } 94 }
92 95
96 void initializeMojo() {
97 modulesInitializer().initializeMojo();
98 }
99
93 void shutdown() { 100 void shutdown() {
94 ThreadState::current()->cleanupMainThread(); 101 ThreadState::current()->cleanupMainThread();
95 102
96 // currentThread() is null if we are running on a thread without a message 103 // currentThread() is null if we are running on a thread without a message
97 // loop. 104 // loop.
98 if (WebThread* currentThread = Platform::current()->currentThread()) { 105 if (WebThread* currentThread = Platform::current()->currentThread()) {
99 currentThread->removeTaskObserver(s_endOfTaskRunner); 106 currentThread->removeTaskObserver(s_endOfTaskRunner);
100 s_endOfTaskRunner = nullptr; 107 s_endOfTaskRunner = nullptr;
101 } 108 }
102 109
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 void MemoryPressureNotificationToWorkerThreadIsolates( 161 void MemoryPressureNotificationToWorkerThreadIsolates(
155 v8::MemoryPressureLevel level) { 162 v8::MemoryPressureLevel level) {
156 WorkerBackingThread::MemoryPressureNotificationToWorkerThreadIsolates(level); 163 WorkerBackingThread::MemoryPressureNotificationToWorkerThreadIsolates(level);
157 } 164 }
158 165
159 void setRAILModeOnWorkerThreadIsolates(v8::RAILMode railMode) { 166 void setRAILModeOnWorkerThreadIsolates(v8::RAILMode railMode) {
160 WorkerBackingThread::setRAILModeOnWorkerThreadIsolates(railMode); 167 WorkerBackingThread::setRAILModeOnWorkerThreadIsolates(railMode);
161 } 168 }
162 169
163 } // namespace blink 170 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698