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

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

Issue 462983002: GN: Make content_shell and webkit_unit_tests work in component build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 #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/auto_reset.h" 10 #include "base/auto_reset.h"
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 #include "content/renderer/external_popup_menu.h" 81 #include "content/renderer/external_popup_menu.h"
82 #include "content/renderer/gpu/render_widget_compositor.h" 82 #include "content/renderer/gpu/render_widget_compositor.h"
83 #include "content/renderer/history_controller.h" 83 #include "content/renderer/history_controller.h"
84 #include "content/renderer/history_serialization.h" 84 #include "content/renderer/history_serialization.h"
85 #include "content/renderer/idle_user_detector.h" 85 #include "content/renderer/idle_user_detector.h"
86 #include "content/renderer/ime_event_guard.h" 86 #include "content/renderer/ime_event_guard.h"
87 #include "content/renderer/input/input_handler_manager.h" 87 #include "content/renderer/input/input_handler_manager.h"
88 #include "content/renderer/internal_document_state_data.h" 88 #include "content/renderer/internal_document_state_data.h"
89 #include "content/renderer/media/audio_device_factory.h" 89 #include "content/renderer/media/audio_device_factory.h"
90 #include "content/renderer/media/video_capture_impl_manager.h" 90 #include "content/renderer/media/video_capture_impl_manager.h"
91 #include "content/renderer/media/webrtc/peer_connection_dependency_factory.h"
92 #include "content/renderer/memory_benchmarking_extension.h" 91 #include "content/renderer/memory_benchmarking_extension.h"
93 #include "content/renderer/mhtml_generator.h" 92 #include "content/renderer/mhtml_generator.h"
94 #include "content/renderer/net_info_helper.h" 93 #include "content/renderer/net_info_helper.h"
95 #include "content/renderer/render_frame_impl.h" 94 #include "content/renderer/render_frame_impl.h"
96 #include "content/renderer/render_frame_proxy.h" 95 #include "content/renderer/render_frame_proxy.h"
97 #include "content/renderer/render_process.h" 96 #include "content/renderer/render_process.h"
98 #include "content/renderer/render_thread_impl.h" 97 #include "content/renderer/render_thread_impl.h"
99 #include "content/renderer/render_view_impl_params.h" 98 #include "content/renderer/render_view_impl_params.h"
100 #include "content/renderer/render_view_mouse_lock_dispatcher.h" 99 #include "content/renderer/render_view_mouse_lock_dispatcher.h"
101 #include "content/renderer/render_widget_fullscreen_pepper.h" 100 #include "content/renderer/render_widget_fullscreen_pepper.h"
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 #endif 219 #endif
221 220
222 #if defined(ENABLE_PLUGINS) 221 #if defined(ENABLE_PLUGINS)
223 #include "content/renderer/npapi/webplugin_delegate_proxy.h" 222 #include "content/renderer/npapi/webplugin_delegate_proxy.h"
224 #include "content/renderer/pepper/pepper_plugin_instance_impl.h" 223 #include "content/renderer/pepper/pepper_plugin_instance_impl.h"
225 #include "content/renderer/pepper/pepper_plugin_registry.h" 224 #include "content/renderer/pepper/pepper_plugin_registry.h"
226 #endif 225 #endif
227 226
228 #if defined(ENABLE_WEBRTC) 227 #if defined(ENABLE_WEBRTC)
229 #include "content/renderer/media/rtc_peer_connection_handler.h" 228 #include "content/renderer/media/rtc_peer_connection_handler.h"
229 #include "content/renderer/media/webrtc/peer_connection_dependency_factory.h"
230 #endif 230 #endif
231 231
232 using blink::WebAXObject; 232 using blink::WebAXObject;
233 using blink::WebApplicationCacheHost; 233 using blink::WebApplicationCacheHost;
234 using blink::WebApplicationCacheHostClient; 234 using blink::WebApplicationCacheHostClient;
235 using blink::WebCString; 235 using blink::WebCString;
236 using blink::WebColor; 236 using blink::WebColor;
237 using blink::WebColorName; 237 using blink::WebColorName;
238 using blink::WebConsoleMessage; 238 using blink::WebConsoleMessage;
239 using blink::WebData; 239 using blink::WebData;
(...skipping 4073 matching lines...) Expand 10 before | Expand all | Expand 10 after
4313 std::vector<gfx::Size> sizes; 4313 std::vector<gfx::Size> sizes;
4314 ConvertToFaviconSizes(icon_urls[i].sizes(), &sizes); 4314 ConvertToFaviconSizes(icon_urls[i].sizes(), &sizes);
4315 if (!url.isEmpty()) 4315 if (!url.isEmpty())
4316 urls.push_back( 4316 urls.push_back(
4317 FaviconURL(url, ToFaviconType(icon_urls[i].iconType()), sizes)); 4317 FaviconURL(url, ToFaviconType(icon_urls[i].iconType()), sizes));
4318 } 4318 }
4319 SendUpdateFaviconURL(urls); 4319 SendUpdateFaviconURL(urls);
4320 } 4320 }
4321 4321
4322 } // namespace content 4322 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698