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

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

Issue 11819044: Update some #includes in content/renderer for headers in the new Platform directory (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('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 // 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 #include "content/renderer/render_view_impl.h" 5 #include "content/renderer/render_view_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 #include "content/renderer/websharedworker_proxy.h" 115 #include "content/renderer/websharedworker_proxy.h"
116 #include "media/base/filter_collection.h" 116 #include "media/base/filter_collection.h"
117 #include "media/base/media_switches.h" 117 #include "media/base/media_switches.h"
118 #include "media/filters/audio_renderer_impl.h" 118 #include "media/filters/audio_renderer_impl.h"
119 #include "media/filters/gpu_video_decoder.h" 119 #include "media/filters/gpu_video_decoder.h"
120 #include "net/base/data_url.h" 120 #include "net/base/data_url.h"
121 #include "net/base/escape.h" 121 #include "net/base/escape.h"
122 #include "net/base/net_errors.h" 122 #include "net/base/net_errors.h"
123 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" 123 #include "net/base/registry_controlled_domains/registry_controlled_domain.h"
124 #include "net/http/http_util.h" 124 #include "net/http/http_util.h"
125 #include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h"
126 #include "third_party/WebKit/Source/Platform/chromium/public/WebDragData.h"
127 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3 D.h"
128 #include "third_party/WebKit/Source/Platform/chromium/public/WebHTTPBody.h"
129 #include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h"
130 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h"
131 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h"
132 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
133 #include "third_party/WebKit/Source/Platform/chromium/public/WebSocketStreamHand le.h"
134 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
135 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
136 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLError.h"
137 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h"
138 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLResponse.h"
139 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h"
125 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec t.h" 140 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec t.h"
126 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h" 141 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h"
127 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMEvent.h" 142 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMEvent.h"
128 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMMessageEvent.h" 143 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMMessageEvent.h"
129 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" 144 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
130 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserCom pletion.h" 145 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserCom pletion.h"
131 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserPar ams.h" 146 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserPar ams.h"
132 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 147 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
133 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" 148 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h"
134 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileChooserParams. h" 149 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileChooserParams. h"
(...skipping 23 matching lines...) Expand all
158 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h" 173 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h"
159 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSearchableFormData .h" 174 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSearchableFormData .h"
160 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" 175 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h"
161 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" 176 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h"
162 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSettings.h" 177 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSettings.h"
163 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageQuotaCallba cks.h" 178 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageQuotaCallba cks.h"
164 #include "third_party/WebKit/Source/WebKit/chromium/public/WebUserMediaClient.h" 179 #include "third_party/WebKit/Source/WebKit/chromium/public/WebUserMediaClient.h"
165 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 180 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
166 #include "third_party/WebKit/Source/WebKit/chromium/public/WebWindowFeatures.h" 181 #include "third_party/WebKit/Source/WebKit/chromium/public/WebWindowFeatures.h"
167 #include "third_party/WebKit/Source/WebKit/chromium/public/default/WebRenderThem e.h" 182 #include "third_party/WebKit/Source/WebKit/chromium/public/default/WebRenderThem e.h"
168 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCString.h "
169 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebDragData. h"
170 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebGraphicsC ontext3D.h"
171 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebHTTPBody. h"
172 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebImage.h"
173 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebPoint.h"
174 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h"
175 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerialize dScriptValue.h" 183 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerialize dScriptValue.h"
176 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h"
177 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSocketStr eamHandle.h"
178 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
179 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h"
180 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLError. h"
181 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques t.h"
182 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRespon se.h"
183 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h"
184 #include "third_party/skia/include/core/SkBitmap.h" 184 #include "third_party/skia/include/core/SkBitmap.h"
185 #include "ui/base/dialogs/selected_file_info.h" 185 #include "ui/base/dialogs/selected_file_info.h"
186 #include "ui/base/ui_base_switches.h" 186 #include "ui/base/ui_base_switches.h"
187 #include "ui/gfx/native_widget_types.h" 187 #include "ui/gfx/native_widget_types.h"
188 #include "ui/gfx/point.h" 188 #include "ui/gfx/point.h"
189 #include "ui/gfx/rect.h" 189 #include "ui/gfx/rect.h"
190 #include "ui/gfx/size_conversions.h" 190 #include "ui/gfx/size_conversions.h"
191 #include "v8/include/v8.h" 191 #include "v8/include/v8.h"
192 #include "webkit/appcache/web_application_cache_host_impl.h" 192 #include "webkit/appcache/web_application_cache_host_impl.h"
193 #include "webkit/base/file_path_string_conversions.h" 193 #include "webkit/base/file_path_string_conversions.h"
(...skipping 17 matching lines...) Expand all
211 #include "webkit/plugins/npapi/webplugin_impl.h" 211 #include "webkit/plugins/npapi/webplugin_impl.h"
212 212
213 #if defined(OS_ANDROID) 213 #if defined(OS_ANDROID)
214 #include "content/common/android/device_info.h" 214 #include "content/common/android/device_info.h"
215 #include "content/renderer/android/address_detector.h" 215 #include "content/renderer/android/address_detector.h"
216 #include "content/renderer/android/content_detector.h" 216 #include "content/renderer/android/content_detector.h"
217 #include "content/renderer/android/email_detector.h" 217 #include "content/renderer/android/email_detector.h"
218 #include "content/renderer/android/phone_number_detector.h" 218 #include "content/renderer/android/phone_number_detector.h"
219 #include "content/renderer/media/stream_texture_factory_impl_android.h" 219 #include "content/renderer/media/stream_texture_factory_impl_android.h"
220 #include "content/renderer/media/webmediaplayer_proxy_impl_android.h" 220 #include "content/renderer/media/webmediaplayer_proxy_impl_android.h"
221 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h"
222 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatRect.h"
221 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHitTestResult.h" 223 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHitTestResult.h"
222 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFloatPoin t.h"
223 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFloatRect .h"
224 #include "ui/gfx/rect_f.h" 224 #include "ui/gfx/rect_f.h"
225 #include "webkit/media/android/media_player_bridge_manager_impl.h" 225 #include "webkit/media/android/media_player_bridge_manager_impl.h"
226 #include "webkit/media/android/webmediaplayer_android.h" 226 #include "webkit/media/android/webmediaplayer_android.h"
227 #include "webkit/media/android/webmediaplayer_impl_android.h" 227 #include "webkit/media/android/webmediaplayer_impl_android.h"
228 #include "webkit/media/android/webmediaplayer_in_process_android.h" 228 #include "webkit/media/android/webmediaplayer_in_process_android.h"
229 #include "webkit/media/android/webmediaplayer_manager_android.h" 229 #include "webkit/media/android/webmediaplayer_manager_android.h"
230 #elif defined(OS_WIN) 230 #elif defined(OS_WIN)
231 // TODO(port): these files are currently Windows only because they concern: 231 // TODO(port): these files are currently Windows only because they concern:
232 // * theming 232 // * theming
233 #include "ui/native_theme/native_theme_win.h" 233 #include "ui/native_theme/native_theme_win.h"
(...skipping 6319 matching lines...) Expand 10 before | Expand all | Expand 10 after
6553 } 6553 }
6554 #endif 6554 #endif
6555 6555
6556 void RenderViewImpl::OnReleaseDisambiguationPopupDIB( 6556 void RenderViewImpl::OnReleaseDisambiguationPopupDIB(
6557 TransportDIB::Handle dib_handle) { 6557 TransportDIB::Handle dib_handle) {
6558 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); 6558 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle);
6559 RenderProcess::current()->ReleaseTransportDIB(dib); 6559 RenderProcess::current()->ReleaseTransportDIB(dib);
6560 } 6560 }
6561 6561
6562 } // namespace content 6562 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698