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

Side by Side Diff: content/browser/in_process_webkit/indexed_db_callbacks.h

Issue 11567029: Proxy new objectstore/index methods through IPC (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix nits, use faster copies 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
« no previous file with comments | « no previous file | content/browser/in_process_webkit/indexed_db_callbacks.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_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CALLBACKS_H_ 5 #ifndef CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CALLBACKS_H_
6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CALLBACKS_H_ 6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CALLBACKS_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 "content/browser/in_process_webkit/indexed_db_dispatcher_host.h" 10 #include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h"
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 int32 ipc_response_id) 163 int32 ipc_response_id)
164 : IndexedDBCallbacksBase(dispatcher_host, ipc_thread_id, 164 : IndexedDBCallbacksBase(dispatcher_host, ipc_thread_id,
165 ipc_response_id) { } 165 ipc_response_id) { }
166 166
167 virtual void onSuccess(const WebKit::WebSerializedScriptValue& value); 167 virtual void onSuccess(const WebKit::WebSerializedScriptValue& value);
168 virtual void onSuccess(const WebKit::WebSerializedScriptValue& value, 168 virtual void onSuccess(const WebKit::WebSerializedScriptValue& value,
169 const WebKit::WebIDBKey& key, 169 const WebKit::WebIDBKey& key,
170 const WebKit::WebIDBKeyPath& keyPath); 170 const WebKit::WebIDBKeyPath& keyPath);
171 virtual void onSuccess(long long value); 171 virtual void onSuccess(long long value);
172 virtual void onSuccess(); 172 virtual void onSuccess();
173 virtual void onSuccess(const WebKit::WebIDBKey& value);
173 174
174 private: 175 private:
175 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBCallbacks); 176 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBCallbacks);
176 }; 177 };
177 178
178 } // namespace content 179 } // namespace content
179 180
180 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CALLBACKS_H_ 181 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CALLBACKS_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/in_process_webkit/indexed_db_callbacks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698