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

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

Issue 10829339: Remove old chromium openCursor() glue (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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
« no previous file with comments | « no previous file | content/common/indexed_db/proxy_webidbobjectstore_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBOBJECTSTORE_IMPL_H_ 5 #ifndef CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBOBJECTSTORE_IMPL_H_
6 #define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBOBJECTSTORE_IMPL_H_ 6 #define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBOBJECTSTORE_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h"
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h" 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 bool multi_entry, 57 bool multi_entry,
58 const WebKit::WebIDBTransaction& transaction, 58 const WebKit::WebIDBTransaction& transaction,
59 WebKit::WebExceptionCode& ec); 59 WebKit::WebExceptionCode& ec);
60 // Transfers ownership of the WebIDBIndex to the caller. 60 // Transfers ownership of the WebIDBIndex to the caller.
61 virtual WebKit::WebIDBIndex* index(const WebKit::WebString& name, 61 virtual WebKit::WebIDBIndex* index(const WebKit::WebString& name,
62 WebKit::WebExceptionCode& ec); 62 WebKit::WebExceptionCode& ec);
63 virtual void deleteIndex(const WebKit::WebString& name, 63 virtual void deleteIndex(const WebKit::WebString& name,
64 const WebKit::WebIDBTransaction& transaction, 64 const WebKit::WebIDBTransaction& transaction,
65 WebKit::WebExceptionCode& ec); 65 WebKit::WebExceptionCode& ec);
66 66
67 virtual void openCursor(const WebKit::WebIDBKeyRange& range,
68 unsigned short direction,
69 WebKit::WebIDBCallbacks* callbacks,
70 const WebKit::WebIDBTransaction& transaction,
71 WebKit::WebExceptionCode& ec);
72
73 virtual void openCursor(const WebKit::WebIDBKeyRange&, 67 virtual void openCursor(const WebKit::WebIDBKeyRange&,
74 WebKit::WebIDBCursor::Direction direction, 68 WebKit::WebIDBCursor::Direction direction,
75 WebKit::WebIDBCallbacks*, 69 WebKit::WebIDBCallbacks*,
76 WebKit::WebIDBTransaction::TaskType, 70 WebKit::WebIDBTransaction::TaskType,
77 const WebKit::WebIDBTransaction&, 71 const WebKit::WebIDBTransaction&,
78 WebKit::WebExceptionCode&); 72 WebKit::WebExceptionCode&);
79 73
80 virtual void count(const WebKit::WebIDBKeyRange& idb_key_range, 74 virtual void count(const WebKit::WebIDBKeyRange& idb_key_range,
81 WebKit::WebIDBCallbacks* callbacks, 75 WebKit::WebIDBCallbacks* callbacks,
82 const WebKit::WebIDBTransaction& transaction, 76 const WebKit::WebIDBTransaction& transaction,
83 WebKit::WebExceptionCode& ec); 77 WebKit::WebExceptionCode& ec);
84 78
85 private: 79 private:
86 int32 idb_object_store_id_; 80 int32 idb_object_store_id_;
87 }; 81 };
88 82
89 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBOBJECTSTORE_IMPL_H_ 83 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBOBJECTSTORE_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/common/indexed_db/proxy_webidbobjectstore_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698