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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 394403002: Move weburlresponse_extradata_impl.* from webkit/ to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: john review Created 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 struct WebFileChooserParams; 107 struct WebFileChooserParams;
108 struct WebFindOptions; 108 struct WebFindOptions;
109 struct WebMediaPlayerAction; 109 struct WebMediaPlayerAction;
110 struct WebPluginAction; 110 struct WebPluginAction;
111 struct WebPoint; 111 struct WebPoint;
112 struct WebWindowFeatures; 112 struct WebWindowFeatures;
113 113
114 #if defined(OS_ANDROID) 114 #if defined(OS_ANDROID)
115 class WebHitTestResult; 115 class WebHitTestResult;
116 #endif 116 #endif
117 } // namespace blink 117 }
118 118
119 namespace ui { 119 namespace ui {
120 struct SelectedFileInfo; 120 struct SelectedFileInfo;
121 } 121 }
122 122
123 namespace webkit_glue {
124 class WebURLResponseExtraDataImpl;
125 }
126
127 namespace content { 123 namespace content {
128 class BrowserPluginManager; 124 class BrowserPluginManager;
129 class DevToolsAgent; 125 class DevToolsAgent;
130 class DocumentState; 126 class DocumentState;
131 class ExternalPopupMenu; 127 class ExternalPopupMenu;
132 class FaviconHelper; 128 class FaviconHelper;
133 class HistoryController; 129 class HistoryController;
134 class HistoryEntry; 130 class HistoryEntry;
135 class ImageResourceFetcher; 131 class ImageResourceFetcher;
136 class MediaStreamDispatcher; 132 class MediaStreamDispatcher;
(...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 // use the Observer interface to filter IPC messages and receive frame change 1169 // use the Observer interface to filter IPC messages and receive frame change
1174 // notifications. 1170 // notifications.
1175 // --------------------------------------------------------------------------- 1171 // ---------------------------------------------------------------------------
1176 1172
1177 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1173 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1178 }; 1174 };
1179 1175
1180 } // namespace content 1176 } // namespace content
1181 1177
1182 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1178 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698