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

Side by Side Diff: webkit/glue/idb_bindings.h

Issue 10834350: Remove all the indexeddb-related utility process code (Closed) Base URL: http://git.chromium.org/chromium/src.git@opencursor-cleanup
Patch Set: Updated against trunk, disabled one test 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
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 #include <vector> 5 #include <vector>
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "webkit/glue/webkit_glue_export.h" 8 #include "webkit/glue/webkit_glue_export.h"
9 9
10 namespace WebKit { 10 namespace WebKit {
11 class WebIDBKey;
12 class WebIDBKeyPath;
13 class WebSerializedScriptValue;
14 } 11 }
15 12
16 namespace webkit_glue { 13 namespace webkit_glue {
dgrogan 2012/08/17 20:54:51 Can you also remove idb_bindings.*?
17 14
18 // Warning: this method holds a V8 lock, it should only be called within a
19 // sandbox.
20 WEBKIT_GLUE_EXPORT void IDBKeysFromValuesAndKeyPath(
21 const std::vector<WebKit::WebSerializedScriptValue>&
22 serialized_script_values,
23 const WebKit::WebIDBKeyPath& idb_key_path,
24 std::vector<WebKit::WebIDBKey>* values);
25
26 WEBKIT_GLUE_EXPORT WebKit::WebSerializedScriptValue InjectIDBKey(
27 const WebKit::WebIDBKey& key,
28 const WebKit::WebSerializedScriptValue& value,
29 const WebKit::WebIDBKeyPath& idb_key_path);
30
31 } // namespace webkit_glue 15 } // namespace webkit_glue
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698