summaryrefslogtreecommitdiffstats
path: root/webkit/glue/multipart_response_delegate.h
diff options
context:
space:
mode:
authordpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-02 19:07:50 +0000
committerdpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-02 19:07:50 +0000
commit51678ad73ad231bd77862f53e18e629420a26042 (patch)
treec54dc34d5d64fb1c796aa52573bbd23c24f2ca65 /webkit/glue/multipart_response_delegate.h
parent8470f4693faac244f839c38358512244b47cb680 (diff)
downloadchromium_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/multipart_response_delegate.h')
-rw-r--r--webkit/glue/multipart_response_delegate.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/webkit/glue/multipart_response_delegate.h b/webkit/glue/multipart_response_delegate.h
index 8cae831..5cc3fd3 100644
--- a/webkit/glue/multipart_response_delegate.h
+++ b/webkit/glue/multipart_response_delegate.h
@@ -53,6 +53,7 @@
#include "base/basictypes.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebURLResponse.h"
+#include "webkit/glue/webkit_glue_export.h"
namespace WebKit {
class WebURLLoader;
@@ -64,7 +65,7 @@ namespace webkit_glue {
// Used by unit tests to access private members.
class MultipartResponseDelegateTester;
-class MultipartResponseDelegate {
+class WEBKIT_GLUE_EXPORT MultipartResponseDelegate {
public:
MultipartResponseDelegate(WebKit::WebURLLoaderClient* client,
WebKit::WebURLLoader* loader,
@@ -90,10 +91,11 @@ class MultipartResponseDelegate {
// Returns the lower and higher content ranges from an individual multipart
// in a multipart response.
// Returns true on success.
- static bool ReadContentRanges(const WebKit::WebURLResponse& response,
- int64* content_range_lower_bound,
- int64* content_range_upper_bound,
- int64* content_range_instance_size);
+ static bool ReadContentRanges(
+ const WebKit::WebURLResponse& response,
+ int64* content_range_lower_bound,
+ int64* content_range_upper_bound,
+ int64* content_range_instance_size);
private:
friend class MultipartResponseDelegateTester; // For unittests.