| Index: content/utility/utility_thread_impl.cc
|
| diff --git a/content/utility/utility_thread_impl.cc b/content/utility/utility_thread_impl.cc
|
| index 7ea1a1d409b7207dee3f47f4be13d0edfcd9e520..1a020ea31ce81d22c83fb6b2eaeca21ffd77b480 100644
|
| --- a/content/utility/utility_thread_impl.cc
|
| +++ b/content/utility/utility_thread_impl.cc
|
| @@ -14,6 +14,7 @@
|
| #include "content/common/utility_messages.h"
|
| #include "content/public/common/content_switches.h"
|
| #include "content/public/utility/content_utility_client.h"
|
| +#include "content/utility/utility_blink_platform_impl.h"
|
| #include "ipc/ipc_sync_channel.h"
|
| #include "third_party/WebKit/public/web/WebKit.h"
|
|
|
| @@ -80,7 +81,7 @@ void UtilityThreadImpl::Init() {
|
| // we run the utility thread on separate thread. This means that if any code
|
| // needs WebKit initialized in the utility process, they need to have
|
| // another path to support single process mode.
|
| - blink_platform_impl_.reset(new BlinkPlatformImpl);
|
| + blink_platform_impl_.reset(new UtilityBlinkPlatformImpl);
|
| blink::initialize(blink_platform_impl_.get());
|
| }
|
| GetContentClient()->utility()->UtilityThreadStarted();
|
|
|