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

Side by Side Diff: third_party/WebKit/public/web/WebAssociatedURLLoader.h

Issue 2542203004: blink: Cleanup class/struct forward declarations (Closed)
Patch Set: Created 4 years 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
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 18 matching lines...) Expand all
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 namespace blink { 36 namespace blink {
37 37
38 class WebAssociatedURLLoaderClient; 38 class WebAssociatedURLLoaderClient;
39 class WebLocalFrameImpl;
40 class WebTaskRunner; 39 class WebTaskRunner;
41 class WebURLRequest; 40 class WebURLRequest;
42 41
43 // This class is used to implement WebFrame::createAssociatedURLLoader. 42 // This class is used to implement WebFrame::createAssociatedURLLoader.
44 class WebAssociatedURLLoader { 43 class WebAssociatedURLLoader {
45 public: 44 public:
46 virtual ~WebAssociatedURLLoader() {} 45 virtual ~WebAssociatedURLLoader() {}
47 46
48 virtual void loadAsynchronously(const WebURLRequest&, 47 virtual void loadAsynchronously(const WebURLRequest&,
49 WebAssociatedURLLoaderClient*) = 0; 48 WebAssociatedURLLoaderClient*) = 0;
50 virtual void cancel() = 0; 49 virtual void cancel() = 0;
51 virtual void setDefersLoading(bool) = 0; 50 virtual void setDefersLoading(bool) = 0;
52 virtual void setLoadingTaskRunner(WebTaskRunner*) = 0; 51 virtual void setLoadingTaskRunner(WebTaskRunner*) = 0;
53 }; 52 };
54 53
55 } // namespace blink 54 } // namespace blink
56 55
57 #endif 56 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebAXObject.h ('k') | third_party/WebKit/public/web/WebAutofillClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698