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

Side by Side Diff: Source/core/loader/PrerendererClient.h

Issue 17569013: Remove unused includes from core/inspector, core/loader and core/page (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 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 unified diff | Download patch
« no previous file with comments | « Source/core/loader/Prerenderer.h ('k') | Source/core/loader/ProgressTracker.cpp » ('j') | 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 31
32 #ifndef PrerendererClient_h 32 #ifndef PrerendererClient_h
33 #define PrerendererClient_h 33 #define PrerendererClient_h
34 34
35 #include "core/platform/Supplementable.h" 35 #include "core/platform/Supplementable.h"
36 #include <wtf/PassRefPtr.h>
37 36
38 namespace WebCore { 37 namespace WebCore {
39 38
40 class Document; 39 class Document;
41 class Page; 40 class Page;
42 class PrerenderHandle; 41 class PrerenderHandle;
43 42
44 class PrerendererClient : public Supplement<Page> { 43 class PrerendererClient : public Supplement<Page> {
45 public: 44 public:
46 virtual ~PrerendererClient() { } 45 virtual ~PrerendererClient() { }
47 46
48 virtual void willAddPrerender(PrerenderHandle*) = 0; 47 virtual void willAddPrerender(PrerenderHandle*) = 0;
49 48
50 static const char* supplementName(); 49 static const char* supplementName();
51 static PrerendererClient* from(Page*); 50 static PrerendererClient* from(Page*);
52 51
53 protected: 52 protected:
54 PrerendererClient() { } 53 PrerendererClient() { }
55 }; 54 };
56 55
57 void providePrerendererClientTo(Page*, PrerendererClient*); 56 void providePrerendererClientTo(Page*, PrerendererClient*);
58 57
59 } // namespace WebCore 58 } // namespace WebCore
60 59
61 #endif // PrerendererClient_h 60 #endif // PrerendererClient_h
OLDNEW
« no previous file with comments | « Source/core/loader/Prerenderer.h ('k') | Source/core/loader/ProgressTracker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698