Index: webkit/glue/multipart_response_delegate.h |
diff --git a/webkit/glue/multipart_response_delegate.h b/webkit/glue/multipart_response_delegate.h |
index 8cae831b57c69cb53b08a995a3e6cce3784ca0b3..5cc3fd3d91c06adf419d465b86f9d782323c4524 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. |