summaryrefslogtreecommitdiffstats
path: root/content/utility/utility_thread.h
diff options
context:
space:
mode:
authorlevin@chromium.org <levin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-01 22:12:18 +0000
committerlevin@chromium.org <levin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-01 22:12:18 +0000
commit0cef904cec62f1aa0191fd36980c6bd3e1e3e896 (patch)
tree8d3ec26fc924c85c22ee2958b09c77c8a0a24cfe /content/utility/utility_thread.h
parent3c05547dc9fd08c0ca1089102b41e2d5254fd3e2 (diff)
downloadchromium_src-0cef904cec62f1aa0191fd36980c6bd3e1e3e896.zip
chromium_src-0cef904cec62f1aa0191fd36980c6bd3e1e3e896.tar.gz
chromium_src-0cef904cec62f1aa0191fd36980c6bd3e1e3e896.tar.bz2
Make Index DB code that accesses WebKit initialize WebKit first.
BUG=None TEST=InProcessBrowserTest,IDBKeyPathWithoutSandbox after https://bugs.webkit.org/show_bug.cgi?id=64577 is landed. Review URL: http://codereview.chromium.org/7483001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94991 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/utility/utility_thread.h')
-rw-r--r--content/utility/utility_thread.h8
1 files changed, 7 insertions, 1 deletions
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);
};