OLD | NEW |
(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_ |
OLD | NEW |