diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-02 19:07:50 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-02 19:07:50 +0000 |
commit | 51678ad73ad231bd77862f53e18e629420a26042 (patch) | |
tree | c54dc34d5d64fb1c796aa52573bbd23c24f2ca65 /webkit/glue/idb_bindings.h | |
parent | 8470f4693faac244f839c38358512244b47cb680 (diff) | |
download | chromium_src-51678ad73ad231bd77862f53e18e629420a26042.zip chromium_src-51678ad73ad231bd77862f53e18e629420a26042.tar.gz chromium_src-51678ad73ad231bd77862f53e18e629420a26042.tar.bz2 |
Add exports needed for glue to build as a component.
This adds WEBKIT_GLUE_EXPORT, WEBKIT_PLUGINS_EXPORT, and WEBKIT_EXTENSIONS_EXPORT macros that are used by the files in
webkit/{glue,plugins,extensions} to show what needs to be exported from a DLL.
R=darin@chromium.org
BUG=98755
TEST=waterfall stays green.
Review URL: http://codereview.chromium.org/8741006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112748 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/idb_bindings.h')
-rw-r--r-- | webkit/glue/idb_bindings.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/webkit/glue/idb_bindings.h b/webkit/glue/idb_bindings.h index 7d7c90d..4ad4b98 100644 --- a/webkit/glue/idb_bindings.h +++ b/webkit/glue/idb_bindings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -6,6 +6,7 @@ #include "base/basictypes.h" #include "base/string16.h" +#include "webkit/glue/webkit_glue_export.h" namespace WebKit { class WebIDBKey; @@ -16,13 +17,13 @@ namespace webkit_glue { // Warning: this method holds a V8 lock, it should only be called within a // sandbox. -bool IDBKeysFromValuesAndKeyPath( +WEBKIT_GLUE_EXPORT bool IDBKeysFromValuesAndKeyPath( const std::vector<WebKit::WebSerializedScriptValue>& serialized_script_values, const string16& idb_key_path, std::vector<WebKit::WebIDBKey>* values); -WebKit::WebSerializedScriptValue InjectIDBKey( +WEBKIT_GLUE_EXPORT WebKit::WebSerializedScriptValue InjectIDBKey( const WebKit::WebIDBKey& key, const WebKit::WebSerializedScriptValue& value, const string16& idb_key_path); |