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

Unified Diff: content/child/multipart_response_delegate.h

Issue 384273003: Move multipart_response_delegate.* from webkit/ to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android_webview fix Created 6 years, 5 months 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 | « android_webview/tools/third_party_files_whitelist.txt ('k') | content/child/multipart_response_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/multipart_response_delegate.h
diff --git a/webkit/child/multipart_response_delegate.h b/content/child/multipart_response_delegate.h
similarity index 91%
rename from webkit/child/multipart_response_delegate.h
rename to content/child/multipart_response_delegate.h
index c1b5c89b12220eee3472347be082bce4c78191b2..9b956490f16ac22b24241a895fc060698d99f4d6 100644
--- a/webkit/child/multipart_response_delegate.h
+++ b/content/child/multipart_response_delegate.h
@@ -46,14 +46,14 @@
*
* ***** END LICENSE BLOCK ***** */
-#ifndef WEBKIT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
-#define WEBKIT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
+#ifndef CONTENT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
+#define CONTENT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
#include <string>
#include "base/basictypes.h"
+#include "content/common/content_export.h"
#include "third_party/WebKit/public/platform/WebURLResponse.h"
-#include "webkit/child/webkit_child_export.h"
namespace blink {
class WebURLLoader;
@@ -61,13 +61,8 @@ class WebURLLoaderClient;
}
namespace content {
-// Used by unit tests to access private members.
-class MultipartResponseDelegateTester;
-}
-
-namespace webkit_glue {
-class WEBKIT_CHILD_EXPORT MultipartResponseDelegate {
+class CONTENT_EXPORT MultipartResponseDelegate {
public:
MultipartResponseDelegate(blink::WebURLLoaderClient* client,
blink::WebURLLoader* loader,
@@ -100,7 +95,7 @@ class WEBKIT_CHILD_EXPORT MultipartResponseDelegate {
int64* content_range_instance_size);
private:
- friend class content::MultipartResponseDelegateTester; // For unittests.
+ friend class MultipartResponseDelegateTester; // For unittests.
// Pointers to the client and associated loader so we can make callbacks as
// we parse pieces of data.
@@ -150,6 +145,6 @@ class WEBKIT_CHILD_EXPORT MultipartResponseDelegate {
DISALLOW_COPY_AND_ASSIGN(MultipartResponseDelegate);
};
-} // namespace webkit_glue
+} // namespace content
-#endif // WEBKIT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
+#endif // CONTENT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
« no previous file with comments | « android_webview/tools/third_party_files_whitelist.txt ('k') | content/child/multipart_response_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698