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

Side by Side Diff: content/child/indexed_db/webidbdatabase_impl.h

Issue 323223003: Remove obsolete helper function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/child/indexed_db/webidbdatabase_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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_CHILD_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ 5 #ifndef CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_
6 #define CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ 6 #define CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "third_party/WebKit/public/platform/WebIDBCursor.h" 10 #include "third_party/WebKit/public/platform/WebIDBCursor.h"
(...skipping 28 matching lines...) Expand all
39 blink::WebIDBDatabaseCallbacks* callbacks, 39 blink::WebIDBDatabaseCallbacks* callbacks,
40 const blink::WebVector<long long>& scope, 40 const blink::WebVector<long long>& scope,
41 blink::WebIDBDatabase::TransactionMode mode); 41 blink::WebIDBDatabase::TransactionMode mode);
42 virtual void close(); 42 virtual void close();
43 virtual void get(long long transactionId, 43 virtual void get(long long transactionId,
44 long long objectStoreId, 44 long long objectStoreId,
45 long long indexId, 45 long long indexId,
46 const blink::WebIDBKeyRange&, 46 const blink::WebIDBKeyRange&,
47 bool keyOnly, 47 bool keyOnly,
48 blink::WebIDBCallbacks*); 48 blink::WebIDBCallbacks*);
49 // TODO(ericu): Remove this once it's obsolete. It's only here for the
50 // three-sided-patch dance.
51 virtual void put(long long transactionId, 49 virtual void put(long long transactionId,
52 long long objectStoreId, 50 long long objectStoreId,
53 const blink::WebData& value, 51 const blink::WebData& value,
54 const blink::WebIDBKey&,
55 PutMode,
56 blink::WebIDBCallbacks*,
57 const blink::WebVector<long long>& indexIds,
58 const blink::WebVector<WebIndexKeys>&);
59 virtual void put(long long transactionId,
60 long long objectStoreId,
61 const blink::WebData& value,
62 const blink::WebVector<blink::WebBlobInfo>& webBlobInfo, 52 const blink::WebVector<blink::WebBlobInfo>& webBlobInfo,
63 const blink::WebIDBKey&, 53 const blink::WebIDBKey&,
64 PutMode, 54 PutMode,
65 blink::WebIDBCallbacks*, 55 blink::WebIDBCallbacks*,
66 const blink::WebVector<long long>& indexIds, 56 const blink::WebVector<long long>& indexIds,
67 const blink::WebVector<WebIndexKeys>&); 57 const blink::WebVector<WebIndexKeys>&);
68 virtual void setIndexKeys(long long transactionId, 58 virtual void setIndexKeys(long long transactionId,
69 long long objectStoreId, 59 long long objectStoreId,
70 const blink::WebIDBKey&, 60 const blink::WebIDBKey&,
71 const blink::WebVector<long long>& indexIds, 61 const blink::WebVector<long long>& indexIds,
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 100
111 private: 101 private:
112 int32 ipc_database_id_; 102 int32 ipc_database_id_;
113 int32 ipc_database_callbacks_id_; 103 int32 ipc_database_callbacks_id_;
114 scoped_refptr<ThreadSafeSender> thread_safe_sender_; 104 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
115 }; 105 };
116 106
117 } // namespace content 107 } // namespace content
118 108
119 #endif // CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ 109 #endif // CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/child/indexed_db/webidbdatabase_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698