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

Unified Diff: third_party/WebKit/Source/web/WebKit.cpp

Issue 2152783002: Enable precompiled headers for Blink on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/Source/web/WebKit.cpp
diff --git a/third_party/WebKit/Source/web/WebKit.cpp b/third_party/WebKit/Source/web/WebKit.cpp
index 1051c2379c90b7e4db63a57db75c21a4791d7918..2b3899fd9038af1981186db6d73ef00273b5bf71 100644
--- a/third_party/WebKit/Source/web/WebKit.cpp
+++ b/third_party/WebKit/Source/web/WebKit.cpp
@@ -55,7 +55,7 @@
namespace blink {
-namespace {
+namespace helpers {
Nico 2016/07/14 19:58:52 why is this needed?
Daniel Bratell 2016/07/15 06:43:55 Doesn't seem to be needed. It used to be needed be
class EndOfTaskRunner : public WebThread::TaskObserver {
public:
@@ -91,7 +91,7 @@ void initialize(Platform* platform)
// currentThread is null if we are running on a thread without a message loop.
if (WebThread* currentThread = platform->currentThread()) {
DCHECK(!s_endOfTaskRunner);
- s_endOfTaskRunner = new EndOfTaskRunner;
+ s_endOfTaskRunner = new helpers::EndOfTaskRunner;
currentThread->addTaskObserver(s_endOfTaskRunner);
}
}

Powered by Google App Engine
This is Rietveld 408576698