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

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

Issue 10786043: call putWithIndexKeys from chrome (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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 | « content/common/indexed_db/indexed_db_messages.h ('k') | no next file » | 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 22 matching lines...) Expand all
33 WebKit::WebIDBCallbacks* callbacks, 33 WebKit::WebIDBCallbacks* callbacks,
34 const WebKit::WebIDBTransaction& transaction, 34 const WebKit::WebIDBTransaction& transaction,
35 WebKit::WebExceptionCode& ec); 35 WebKit::WebExceptionCode& ec);
36 virtual void putWithIndexKeys( 36 virtual void putWithIndexKeys(
37 const WebKit::WebSerializedScriptValue&, 37 const WebKit::WebSerializedScriptValue&,
38 const WebKit::WebIDBKey&, 38 const WebKit::WebIDBKey&,
39 PutMode, 39 PutMode,
40 WebKit::WebIDBCallbacks*, 40 WebKit::WebIDBCallbacks*,
41 const WebKit::WebIDBTransaction&, 41 const WebKit::WebIDBTransaction&,
42 const WebKit::WebVector<WebKit::WebString>&, 42 const WebKit::WebVector<WebKit::WebString>&,
43 const WebKit::WebVector<WebKit::WebVector<WebKit::WebIDBKey> >&, 43 const WebKit::WebVector<WebKit::WebIDBObjectStore::WebIndexKeys>&,
44 WebKit::WebExceptionCode&); 44 WebKit::WebExceptionCode&);
45 virtual void deleteFunction(const WebKit::WebIDBKeyRange& key_range, 45 virtual void deleteFunction(const WebKit::WebIDBKeyRange& key_range,
46 WebKit::WebIDBCallbacks* callbacks, 46 WebKit::WebIDBCallbacks* callbacks,
47 const WebKit::WebIDBTransaction& transaction, 47 const WebKit::WebIDBTransaction& transaction,
48 WebKit::WebExceptionCode& ec); 48 WebKit::WebExceptionCode& ec);
49 virtual void clear(WebKit::WebIDBCallbacks* callbacks, 49 virtual void clear(WebKit::WebIDBCallbacks* callbacks,
50 const WebKit::WebIDBTransaction& transaction, 50 const WebKit::WebIDBTransaction& transaction,
51 WebKit::WebExceptionCode& ec); 51 WebKit::WebExceptionCode& ec);
52 52
53 virtual WebKit::WebIDBIndex* createIndex( 53 virtual WebKit::WebIDBIndex* createIndex(
(...skipping 19 matching lines...) Expand all
73 virtual void count(const WebKit::WebIDBKeyRange& idb_key_range, 73 virtual void count(const WebKit::WebIDBKeyRange& idb_key_range,
74 WebKit::WebIDBCallbacks* callbacks, 74 WebKit::WebIDBCallbacks* callbacks,
75 const WebKit::WebIDBTransaction& transaction, 75 const WebKit::WebIDBTransaction& transaction,
76 WebKit::WebExceptionCode& ec); 76 WebKit::WebExceptionCode& ec);
77 77
78 private: 78 private:
79 int32 idb_object_store_id_; 79 int32 idb_object_store_id_;
80 }; 80 };
81 81
82 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBOBJECTSTORE_IMPL_H_ 82 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBOBJECTSTORE_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/indexed_db/indexed_db_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698