Making some WebBlob methods exportable.
authorjcivelli@chromium.org <jcivelli@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Sat, 24 Sep 2011 00:44:37 +0000 (00:44 +0000)
committerjcivelli@chromium.org <jcivelli@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Sat, 24 Sep 2011 00:44:37 +0000 (00:44 +0000)
This is needed by the shared lib chromium build.
https://bugs.webkit.org/show_bug.cgi?id=68709

Reviewed by Darin Fisher.

* public/WebBlob.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@95891 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebKit/chromium/ChangeLog
Source/WebKit/chromium/public/WebBlob.h

index 2d44b51..5374b9f 100644 (file)
@@ -1,3 +1,13 @@
+2011-09-23  Jay Civelli  <jcivelli@chromium.org>
+
+        Making some WebBlob methods exportable.
+        This is needed by the shared lib chromium build.
+        https://bugs.webkit.org/show_bug.cgi?id=68709
+
+        Reviewed by Darin Fisher.
+
+        * public/WebBlob.h:
+
 2011-09-23  Varun Jain  <varunjain@google.com>
 
         Refactor WebViewImpl::scrollFocusedNodeIntoRect to a better place and add tests 
index 2c7e6eb..cc74de5 100644 (file)
@@ -58,7 +58,7 @@ public:
         return *this;
     }
 
-    static WebBlob createFromFile(const WebString& path, long long size);
+    WEBKIT_EXPORT static WebBlob createFromFile(const WebString& path, long long size);
 
     WEBKIT_EXPORT void reset();
     WEBKIT_EXPORT void assign(const WebBlob&);
@@ -66,7 +66,7 @@ public:
     bool isNull() const { return m_private.isNull(); }
 
 #if WEBKIT_USING_V8
-    v8::Handle<v8::Value>  toV8Value();
+    WEBKIT_EXPORT v8::Handle<v8::Value>  toV8Value();
 #endif
 
 #if WEBKIT_IMPLEMENTATION