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

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

Issue 8741006: Add exports needed for glue to build as a component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to r112585 Created 9 years 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 | « webkit/glue/glue_serialize.h ('k') | webkit/glue/image_decoder.h » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "base/string16.h" 8 #include "base/string16.h"
9 #include "webkit/glue/webkit_glue_export.h"
9 10
10 namespace WebKit { 11 namespace WebKit {
11 class WebIDBKey; 12 class WebIDBKey;
12 class WebSerializedScriptValue; 13 class WebSerializedScriptValue;
13 } 14 }
14 15
15 namespace webkit_glue { 16 namespace webkit_glue {
16 17
17 // Warning: this method holds a V8 lock, it should only be called within a 18 // Warning: this method holds a V8 lock, it should only be called within a
18 // sandbox. 19 // sandbox.
19 bool IDBKeysFromValuesAndKeyPath( 20 WEBKIT_GLUE_EXPORT bool IDBKeysFromValuesAndKeyPath(
20 const std::vector<WebKit::WebSerializedScriptValue>& 21 const std::vector<WebKit::WebSerializedScriptValue>&
21 serialized_script_values, 22 serialized_script_values,
22 const string16& idb_key_path, 23 const string16& idb_key_path,
23 std::vector<WebKit::WebIDBKey>* values); 24 std::vector<WebKit::WebIDBKey>* values);
24 25
25 WebKit::WebSerializedScriptValue InjectIDBKey( 26 WEBKIT_GLUE_EXPORT WebKit::WebSerializedScriptValue InjectIDBKey(
26 const WebKit::WebIDBKey& key, 27 const WebKit::WebIDBKey& key,
27 const WebKit::WebSerializedScriptValue& value, 28 const WebKit::WebSerializedScriptValue& value,
28 const string16& idb_key_path); 29 const string16& idb_key_path);
29 30
30 } // namespace webkit_glue 31 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/glue_serialize.h ('k') | webkit/glue/image_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698