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

Side by Side Diff: third_party/WebKit/public/web/WebAssociatedURLLoader.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, 7 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010, 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2010, 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef WebAssociatedURLLoader_h 31 #ifndef WebAssociatedURLLoader_h
32 #define WebAssociatedURLLoader_h 32 #define WebAssociatedURLLoader_h
33 33
34 #include "public/web/WebAssociatedURLLoaderOptions.h" 34 #include "public/web/WebAssociatedURLLoaderOptions.h"
35 35
36 #include "public/platform/WebCommon.h"
37
36 namespace blink { 38 namespace blink {
37 39
38 class WebAssociatedURLLoaderClient; 40 class WebAssociatedURLLoaderClient;
39 class WebTaskRunner; 41 class WebTaskRunner;
40 class WebURLRequest; 42 class WebURLRequest;
41 43
42 // This class is used to implement WebFrame::createAssociatedURLLoader. 44 // This class is used to implement WebFrame::createAssociatedURLLoader.
43 class WebAssociatedURLLoader { 45 class BLINK_EXPORT WebAssociatedURLLoader {
44 public: 46 public:
45 virtual ~WebAssociatedURLLoader() {} 47 virtual ~WebAssociatedURLLoader() {}
46 48
47 virtual void LoadAsynchronously(const WebURLRequest&, 49 virtual void LoadAsynchronously(const WebURLRequest&,
48 WebAssociatedURLLoaderClient*) = 0; 50 WebAssociatedURLLoaderClient*) = 0;
49 virtual void Cancel() = 0; 51 virtual void Cancel() = 0;
50 virtual void SetDefersLoading(bool) = 0; 52 virtual void SetDefersLoading(bool) = 0;
51 virtual void SetLoadingTaskRunner(WebTaskRunner*) = 0; 53 virtual void SetLoadingTaskRunner(WebTaskRunner*) = 0;
52 }; 54 };
53 55
54 } // namespace blink 56 } // namespace blink
55 57
56 #endif 58 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698