Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Side by Side Diff: chrome/renderer/renderer_webidbobjectstore_impl.h

Issue 2740003: Implement IDBDatabase::createObjectStore. Also refactor IndexedDBCallbacks. (Closed)
Patch Set: Make sure indexed_db_context.cc is in the gypi file. Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_RENDERER_RENDERER_WEBIDBOBJECTSTORE_IMPL_H_
6 #define CHROME_RENDERER_RENDERER_WEBIDBOBJECTSTORE_IMPL_H_
7
8 #include "base/basictypes.h"
9 #include "third_party/WebKit/WebKit/chromium/public/WebIDBCallbacks.h"
10 #include "third_party/WebKit/WebKit/chromium/public/WebIDBObjectStore.h"
11
12 namespace WebKit {
13 class WebFrame;
14 class WebIDBCallbacks;
15 class WebString;
16 }
17
18 class RendererWebIDBObjectStoreImpl : public WebKit::WebIDBObjectStore {
19 public:
20 explicit RendererWebIDBObjectStoreImpl(int32 idb_object_store_id);
21 virtual ~RendererWebIDBObjectStoreImpl();
22
23 // WebKit::WebIDBObjectStore
24 virtual WebKit::WebString name() const;
25 virtual WebKit::WebString keyPath() const;
26
27 private:
28 int32 idb_object_store_id_;
29 };
30
31 #endif // CHROME_RENDERER_RENDERER_WEBIDBOBJECTSTORE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/renderer/renderer_webidbdatabase_impl.cc ('k') | chrome/renderer/renderer_webidbobjectstore_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698