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

Unified Diff: webkit/glue/dom_operations.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, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/cpp_variant.h ('k') | webkit/glue/form_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/dom_operations.h
diff --git a/webkit/glue/dom_operations.h b/webkit/glue/dom_operations.h
index 924878fa95d1a9eb81702c512df6b1fb6124703b..9c15cced44a90f53d27e9365ad4fd97e323e4c1c 100644
--- a/webkit/glue/dom_operations.h
+++ b/webkit/glue/dom_operations.h
@@ -9,6 +9,7 @@
#include <vector>
#include "googleurl/src/gurl.h"
+#include "webkit/glue/webkit_glue_export.h"
namespace WebKit {
class WebDocument;
@@ -49,7 +50,8 @@ struct SavableResourcesResult {
// and sub-frame. After collecting all savable resource links, this function
// will send those links to embedder. Return value indicates whether we get
// all saved resource links successfully.
-bool GetAllSavableResourceLinksForCurrentPage(WebKit::WebView* view,
+WEBKIT_GLUE_EXPORT bool GetAllSavableResourceLinksForCurrentPage(
+ WebKit::WebView* view,
const GURL& page_url, SavableResourcesResult* savable_resources_result,
const char** savable_schemes);
@@ -82,12 +84,12 @@ int NumberOfActiveAnimations(WebKit::WebView* view);
// the value in "href". For BODY, TABLE, TR, TD, returns the value in
// "background". For BLOCKQUOTE, Q, DEL, INS, returns the value in "cite"
// attribute. Otherwise returns a null WebString.
-WebKit::WebString GetSubResourceLinkFromElement(
+WEBKIT_GLUE_EXPORT WebKit::WebString GetSubResourceLinkFromElement(
const WebKit::WebElement& element);
// Puts the meta-elements of |document| that have the attribute |attribute_name|
// with a value of |attribute_value| in |meta_elements|.
-void GetMetaElementsWithAttribute(
+WEBKIT_GLUE_EXPORT void GetMetaElementsWithAttribute(
WebKit::WebDocument* document,
const string16& attribute_name,
const string16& atribute_value,
« no previous file with comments | « webkit/glue/cpp_variant.h ('k') | webkit/glue/form_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698