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

Unified Diff: third_party/WebKit/Source/core/exported/WebAssociatedURLLoaderImpl.h

Issue 2831833002: Move WebAssociatedURLLoaderImpl.* from web/ -> core/export/. (Closed)
Patch Set: Need to BLINK_EXPORT WebAssociatedURLLoader for compile to work on windows. Created 3 years, 8 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
Index: third_party/WebKit/Source/core/exported/WebAssociatedURLLoaderImpl.h
diff --git a/third_party/WebKit/Source/web/WebAssociatedURLLoaderImpl.h b/third_party/WebKit/Source/core/exported/WebAssociatedURLLoaderImpl.h
similarity index 89%
rename from third_party/WebKit/Source/web/WebAssociatedURLLoaderImpl.h
rename to third_party/WebKit/Source/core/exported/WebAssociatedURLLoaderImpl.h
index 736af8776e16248f83531fbb8e61b3297709b7f4..57bdf3471ee97df77a7ff009a5ddf7d49521b516 100644
--- a/third_party/WebKit/Source/web/WebAssociatedURLLoaderImpl.h
+++ b/third_party/WebKit/Source/core/exported/WebAssociatedURLLoaderImpl.h
@@ -6,6 +6,7 @@
#define WebAssociatedURLLoaderImpl_h
#include <memory>
+#include "core/CoreExport.h"
#include "platform/heap/Handle.h"
#include "platform/wtf/Noncopyable.h"
#include "platform/wtf/RefPtr.h"
@@ -16,15 +17,15 @@ namespace blink {
class DocumentThreadableLoader;
class WebAssociatedURLLoaderClient;
-class WebLocalFrameImpl;
+class Document;
// This class is used to implement WebFrame::createAssociatedURLLoader.
-class WebAssociatedURLLoaderImpl final : public WebAssociatedURLLoader {
+class CORE_EXPORT WebAssociatedURLLoaderImpl final
+ : public WebAssociatedURLLoader {
WTF_MAKE_NONCOPYABLE(WebAssociatedURLLoaderImpl);
public:
- WebAssociatedURLLoaderImpl(WebLocalFrameImpl*,
- const WebAssociatedURLLoaderOptions&);
+ WebAssociatedURLLoaderImpl(Document*, const WebAssociatedURLLoaderOptions&);
~WebAssociatedURLLoaderImpl();
void LoadAsynchronously(const WebURLRequest&,

Powered by Google App Engine
This is Rietveld 408576698