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

Side by Side Diff: public/web/WebDataSource.h

Issue 776693002: Clean forward declaration in public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix fakewebplugin Created 6 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
« no previous file with comments | « public/web/WebBindings.h ('k') | public/web/WebDevToolsAgent.h » ('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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 19 matching lines...) Expand all
30 30
31 #ifndef WebDataSource_h 31 #ifndef WebDataSource_h
32 #define WebDataSource_h 32 #define WebDataSource_h
33 33
34 #include "../platform/WebCommon.h" 34 #include "../platform/WebCommon.h"
35 #include "WebNavigationType.h" 35 #include "WebNavigationType.h"
36 #include "WebTextDirection.h" 36 #include "WebTextDirection.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class WebApplicationCacheHost;
41 class WebString;
42 class WebURL; 40 class WebURL;
43 class WebURLRequest; 41 class WebURLRequest;
44 class WebURLResponse; 42 class WebURLResponse;
45 template <typename T> class WebVector; 43 template <typename T> class WebVector;
46 44
47 class WebDataSource { 45 class WebDataSource {
48 public: 46 public:
49 class ExtraData { 47 class ExtraData {
50 public: 48 public:
51 virtual ~ExtraData() { } 49 virtual ~ExtraData() { }
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 // the user may have already recorded the original value. 108 // the user may have already recorded the original value.
111 virtual void setNavigationStartTime(double) = 0; 109 virtual void setNavigationStartTime(double) = 0;
112 110
113 protected: 111 protected:
114 ~WebDataSource() { } 112 ~WebDataSource() { }
115 }; 113 };
116 114
117 } // namespace blink 115 } // namespace blink
118 116
119 #endif 117 #endif
OLDNEW
« no previous file with comments | « public/web/WebBindings.h ('k') | public/web/WebDevToolsAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698