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

Side by Side Diff: content/common/indexed_db/proxy_webidbindex_impl.h

Issue 11828054: Remove IPC code for old methods. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix merge conflicts Created 7 years, 11 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) 2012 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 CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBINDEX_IMPL_H_
6 #define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBINDEX_IMPL_H_
7
8 #include "base/basictypes.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h"
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBIndex.h"
11
12 namespace content {
13
14 class RendererWebIDBIndexImpl : public WebKit::WebIDBIndex {
15 public:
16 explicit RendererWebIDBIndexImpl(int32 ipc_index_id);
17 virtual ~RendererWebIDBIndexImpl();
18
19 // WebKit::WebIDBIndex
20 virtual void openObjectCursor(const WebKit::WebIDBKeyRange& range,
21 unsigned short direction,
22 WebKit::WebIDBCallbacks* callbacks,
23 const WebKit::WebIDBTransaction& transaction,
24 WebKit::WebExceptionCode& ec);
25 virtual void openKeyCursor(const WebKit::WebIDBKeyRange& range,
26 unsigned short direction,
27 WebKit::WebIDBCallbacks* callbacks,
28 const WebKit::WebIDBTransaction& transaction,
29 WebKit::WebExceptionCode& ec);
30 virtual void count(const WebKit::WebIDBKeyRange& range,
31 WebKit::WebIDBCallbacks* callbacks,
32 const WebKit::WebIDBTransaction& transaction,
33 WebKit::WebExceptionCode& ec);
34 virtual void getObject(const WebKit::WebIDBKeyRange& key_range,
35 WebKit::WebIDBCallbacks* callbacks,
36 const WebKit::WebIDBTransaction& transaction,
37 WebKit::WebExceptionCode& ec);
38 virtual void getKey(const WebKit::WebIDBKeyRange& key_range,
39 WebKit::WebIDBCallbacks* callbacks,
40 const WebKit::WebIDBTransaction& transaction,
41 WebKit::WebExceptionCode& ec);
42
43 private:
44 int32 ipc_index_id_;
45 };
46
47 } // namespace content
48
49 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBINDEX_IMPL_H_
50
OLDNEW
« no previous file with comments | « content/common/indexed_db/proxy_webidbdatabase_impl.cc ('k') | content/common/indexed_db/proxy_webidbindex_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698