From: jcivelli@chromium.org Date: Sat, 24 Sep 2011 00:44:37 +0000 (+0000) Subject: Making some WebBlob methods exportable. X-Git-Tag: 070512121124~23747 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=34d121d3954546ce1718cb69e3187cb2859839ac;p=profile%2Fivi%2Fwebkit-efl.git 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: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@95891 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebKit/chromium/ChangeLog b/Source/WebKit/chromium/ChangeLog index 2d44b51..5374b9f 100644 --- a/Source/WebKit/chromium/ChangeLog +++ b/Source/WebKit/chromium/ChangeLog @@ -1,3 +1,13 @@ +2011-09-23 Jay Civelli + + 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 Refactor WebViewImpl::scrollFocusedNodeIntoRect to a better place and add tests diff --git a/Source/WebKit/chromium/public/WebBlob.h b/Source/WebKit/chromium/public/WebBlob.h index 2c7e6eb..cc74de5 100644 --- a/Source/WebKit/chromium/public/WebBlob.h +++ b/Source/WebKit/chromium/public/WebBlob.h @@ -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 toV8Value(); + WEBKIT_EXPORT v8::Handle toV8Value(); #endif #if WEBKIT_IMPLEMENTATION