| Index: content/worker/worker_thread.cc
|
| diff --git a/content/worker/worker_thread.cc b/content/worker/worker_thread.cc
|
| index 456457c4e780e6bb350d53946818d029557f7195..6c1f8fd437047ea4e8fd5f1b4985a12521fb8326 100644
|
| --- a/content/worker/worker_thread.cc
|
| +++ b/content/worker/worker_thread.cc
|
| @@ -9,6 +9,7 @@
|
| #include "base/threading/thread_local.h"
|
| #include "content/child/appcache/appcache_dispatcher.h"
|
| #include "content/child/appcache/appcache_frontend_impl.h"
|
| +#include "content/child/child_thread.h"
|
| #include "content/child/db_message_filter.h"
|
| #include "content/child/indexed_db/indexed_db_message_filter.h"
|
| #include "content/child/runtime_features.h"
|
| @@ -23,7 +24,6 @@
|
| #include "third_party/WebKit/public/web/WebDatabase.h"
|
| #include "third_party/WebKit/public/web/WebKit.h"
|
| #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
|
| -#include "webkit/glue/webkit_glue.h"
|
|
|
| using blink::WebRuntimeFeatures;
|
|
|
| @@ -41,7 +41,7 @@ WorkerThread::WorkerThread() {
|
|
|
| const CommandLine& command_line = *CommandLine::ForCurrentProcess();
|
| if (command_line.HasSwitch(switches::kJavaScriptFlags)) {
|
| - webkit_glue::SetJavaScriptFlags(
|
| + ChildThread::SetJavaScriptFlags(
|
| command_line.GetSwitchValueASCII(switches::kJavaScriptFlags));
|
| }
|
| SetRuntimeFeaturesDefaultsAndUpdateFromArgs(command_line);
|
|
|