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

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

Issue 25008006: Flush out initial [un]registerServiceWorker roundtrip (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update to ToT Created 7 years, 2 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 #include "content/renderer/media/webmediaplayer_params.h" 106 #include "content/renderer/media/webmediaplayer_params.h"
107 #include "content/renderer/mhtml_generator.h" 107 #include "content/renderer/mhtml_generator.h"
108 #include "content/renderer/notification_provider.h" 108 #include "content/renderer/notification_provider.h"
109 #include "content/renderer/render_frame_impl.h" 109 #include "content/renderer/render_frame_impl.h"
110 #include "content/renderer/render_process.h" 110 #include "content/renderer/render_process.h"
111 #include "content/renderer/render_thread_impl.h" 111 #include "content/renderer/render_thread_impl.h"
112 #include "content/renderer/render_view_impl_params.h" 112 #include "content/renderer/render_view_impl_params.h"
113 #include "content/renderer/render_view_mouse_lock_dispatcher.h" 113 #include "content/renderer/render_view_mouse_lock_dispatcher.h"
114 #include "content/renderer/render_widget_fullscreen_pepper.h" 114 #include "content/renderer/render_widget_fullscreen_pepper.h"
115 #include "content/renderer/renderer_date_time_picker.h" 115 #include "content/renderer/renderer_date_time_picker.h"
116 #include "content/renderer/renderer_webapplicationcachehost_impl.h"
117 #include "content/renderer/renderer_webcolorchooser_impl.h" 116 #include "content/renderer/renderer_webcolorchooser_impl.h"
118 #include "content/renderer/savable_resources.h" 117 #include "content/renderer/savable_resources.h"
119 #include "content/renderer/speech_recognition_dispatcher.h" 118 #include "content/renderer/speech_recognition_dispatcher.h"
120 #include "content/renderer/stats_collection_controller.h" 119 #include "content/renderer/stats_collection_controller.h"
121 #include "content/renderer/stats_collection_observer.h" 120 #include "content/renderer/stats_collection_observer.h"
122 #include "content/renderer/text_input_client_observer.h" 121 #include "content/renderer/text_input_client_observer.h"
123 #include "content/renderer/v8_value_converter_impl.h" 122 #include "content/renderer/v8_value_converter_impl.h"
124 #include "content/renderer/web_ui_extension.h" 123 #include "content/renderer/web_ui_extension.h"
125 #include "content/renderer/web_ui_extension_data.h" 124 #include "content/renderer/web_ui_extension_data.h"
126 #include "content/renderer/websharedworker_proxy.h" 125 #include "content/renderer/websharedworker_proxy.h"
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 #include "content/renderer/pepper/pepper_plugin_registry.h" 246 #include "content/renderer/pepper/pepper_plugin_registry.h"
248 #include "content/renderer/pepper/pepper_webplugin_impl.h" 247 #include "content/renderer/pepper/pepper_webplugin_impl.h"
249 #include "content/renderer/pepper/plugin_module.h" 248 #include "content/renderer/pepper/plugin_module.h"
250 #endif 249 #endif
251 250
252 #if defined(ENABLE_WEBRTC) 251 #if defined(ENABLE_WEBRTC)
253 #include "content/renderer/media/rtc_peer_connection_handler.h" 252 #include "content/renderer/media/rtc_peer_connection_handler.h"
254 #endif 253 #endif
255 254
256 using WebKit::WebAXObject; 255 using WebKit::WebAXObject;
257 using WebKit::WebApplicationCacheHost;
258 using WebKit::WebApplicationCacheHostClient;
259 using WebKit::WebCString; 256 using WebKit::WebCString;
260 using WebKit::WebColor; 257 using WebKit::WebColor;
261 using WebKit::WebColorName; 258 using WebKit::WebColorName;
262 using WebKit::WebConsoleMessage; 259 using WebKit::WebConsoleMessage;
263 using WebKit::WebContextMenuData; 260 using WebKit::WebContextMenuData;
264 using WebKit::WebCookieJar; 261 using WebKit::WebCookieJar;
265 using WebKit::WebData; 262 using WebKit::WebData;
266 using WebKit::WebDataSource; 263 using WebKit::WebDataSource;
267 using WebKit::WebDocument; 264 using WebKit::WebDocument;
268 using WebKit::WebDOMEvent; 265 using WebKit::WebDOMEvent;
(...skipping 6290 matching lines...) Expand 10 before | Expand all | Expand 10 after
6559 for (size_t i = 0; i < icon_urls.size(); i++) { 6556 for (size_t i = 0; i < icon_urls.size(); i++) {
6560 WebURL url = icon_urls[i].iconURL(); 6557 WebURL url = icon_urls[i].iconURL();
6561 if (!url.isEmpty()) 6558 if (!url.isEmpty())
6562 urls.push_back(FaviconURL(url, 6559 urls.push_back(FaviconURL(url,
6563 ToFaviconType(icon_urls[i].iconType()))); 6560 ToFaviconType(icon_urls[i].iconType())));
6564 } 6561 }
6565 SendUpdateFaviconURL(urls); 6562 SendUpdateFaviconURL(urls);
6566 } 6563 }
6567 6564
6568 } // namespace content 6565 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698