summaryrefslogtreecommitdiffstats
path: root/content/utility
diff options
context:
space:
mode:
Diffstat (limited to 'content/utility')
-rw-r--r--content/utility/utility_thread.cc6
-rw-r--r--content/utility/utility_thread.h8
2 files changed, 12 insertions, 2 deletions
diff --git a/content/utility/utility_thread.cc b/content/utility/utility_thread.cc
index 52ad52a..10d49cf 100644
--- a/content/utility/utility_thread.cc
+++ b/content/utility/utility_thread.cc
@@ -11,8 +11,10 @@
#include "content/common/utility_messages.h"
#include "content/utility/content_utility_client.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebSerializedScriptValue.h"
#include "webkit/glue/idb_bindings.h"
+#include "webkit/glue/webkitclient_impl.h"
namespace {
@@ -25,14 +27,16 @@ void ConvertVector(const SRC& src, DEST* dest) {
} // namespace
-
UtilityThread::UtilityThread()
: batch_mode_(false) {
ChildProcess::current()->AddRefProcess();
+ webkit_client_.reset(new webkit_glue::WebKitClientImpl);
+ WebKit::initialize(webkit_client_.get());
content::GetContentClient()->utility()->UtilityThreadStarted();
}
UtilityThread::~UtilityThread() {
+ WebKit::shutdown();
}
bool UtilityThread::OnControlMessageReceived(const IPC::Message& msg) {
diff --git a/content/utility/utility_thread.h b/content/utility/utility_thread.h
index 53e637c..a6c0694 100644
--- a/content/utility/utility_thread.h
+++ b/content/utility/utility_thread.h
@@ -10,12 +10,16 @@
#include <vector>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "base/string16.h"
#include "content/common/child_thread.h"
class IndexedDBKey;
class SerializedScriptValue;
+namespace webkit_glue {
+class WebKitClientImpl;
+}
// This class represents the background thread where the utility task runs.
class UtilityThread : public ChildThread {
@@ -33,7 +37,7 @@ class UtilityThread : public ChildThread {
private:
// ChildThread implementation.
- virtual bool OnControlMessageReceived(const IPC::Message& msg);
+ virtual bool OnControlMessageReceived(const IPC::Message& msg) OVERRIDE;
// IPC message handlers.
void OnIDBKeysFromValuesAndKeyPath(
@@ -49,6 +53,8 @@ class UtilityThread : public ChildThread {
// True when we're running in batch mode.
bool batch_mode_;
+ scoped_ptr<webkit_glue::WebKitClientImpl> webkit_client_;
+
DISALLOW_COPY_AND_ASSIGN(UtilityThread);
};