diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-14 12:59:11 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-14 12:59:11 +0000 |
commit | 70c19a930beddde0e382777cb8799e7c8ebb1625 (patch) | |
tree | 887ab4d3962e19a5d114f205c0871ba2f9cf1e98 /chrome/renderer/renderer_webidbdatabase_impl.h | |
parent | 7d754b0c3f04087aad0931141cdbdfbf1a82ba41 (diff) | |
download | chromium_src-70c19a930beddde0e382777cb8799e7c8ebb1625.zip chromium_src-70c19a930beddde0e382777cb8799e7c8ebb1625.tar.gz chromium_src-70c19a930beddde0e382777cb8799e7c8ebb1625.tar.bz2 |
Implement IndexedDatabase::open up until re-entrance into WebKit. That (and the
rest of IndexedDB) will be done in subsequent patches. Included in this patch
is a lot of other infrastructure for making IndexedDB work. Included is a
conversion from the DOMStorageDispatcherHost into a dispatcher host for all APIs
that have a backend in WebKit.
I named it WebKitAPIDispatcherHost. Since it's in browser/in_process_webkit and
it is for APIs that connect up to the WebKit API and it's used for APIs whose
backend is implemented in WebKit I thought the name was decent and not _too_
confusing, but if you have better ideas, please let me know.
This includes some code that you've already reviewed (darin), but a lot has
changed so please take a look at all of it.
TEST=Not much to test yet + behind a flag.
BUG=none
Review URL: http://codereview.chromium.org/1599009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47268 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/renderer_webidbdatabase_impl.h')
-rw-r--r-- | chrome/renderer/renderer_webidbdatabase_impl.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/chrome/renderer/renderer_webidbdatabase_impl.h b/chrome/renderer/renderer_webidbdatabase_impl.h new file mode 100644 index 0000000..f4fe7fc --- /dev/null +++ b/chrome/renderer/renderer_webidbdatabase_impl.h @@ -0,0 +1,21 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in the +// LICENSE file. + +#ifndef CHROME_RENDERER_RENDERER_WEBIDBDATABASE_IMPL_H_ +#define CHROME_RENDERER_RENDERER_WEBIDBDATABASE_IMPL_H_ + +#include "base/basictypes.h" +#include "third_party/WebKit/WebKit/chromium/public/WebIDBCallbacks.h" +#include "third_party/WebKit/WebKit/chromium/public/WebIDBDatabase.h" + +class RendererWebIDBDatabaseImpl : public WebKit::WebIDBDatabase { + public: + explicit RendererWebIDBDatabaseImpl(int32 idb_database_id); + virtual ~RendererWebIDBDatabaseImpl(); + + private: + int32 idb_database_id_; +}; + +#endif // CHROME_RENDERER_RENDERER_WEBIDBDATABASE_IMPL_H_ |