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

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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 #include "content/renderer/media/webmediaplayer_params.h" 105 #include "content/renderer/media/webmediaplayer_params.h"
106 #include "content/renderer/mhtml_generator.h" 106 #include "content/renderer/mhtml_generator.h"
107 #include "content/renderer/notification_provider.h" 107 #include "content/renderer/notification_provider.h"
108 #include "content/renderer/render_frame_impl.h" 108 #include "content/renderer/render_frame_impl.h"
109 #include "content/renderer/render_process.h" 109 #include "content/renderer/render_process.h"
110 #include "content/renderer/render_thread_impl.h" 110 #include "content/renderer/render_thread_impl.h"
111 #include "content/renderer/render_view_impl_params.h" 111 #include "content/renderer/render_view_impl_params.h"
112 #include "content/renderer/render_view_mouse_lock_dispatcher.h" 112 #include "content/renderer/render_view_mouse_lock_dispatcher.h"
113 #include "content/renderer/render_widget_fullscreen_pepper.h" 113 #include "content/renderer/render_widget_fullscreen_pepper.h"
114 #include "content/renderer/renderer_date_time_picker.h" 114 #include "content/renderer/renderer_date_time_picker.h"
115 #include "content/renderer/renderer_webapplicationcachehost_impl.h"
116 #include "content/renderer/renderer_webcolorchooser_impl.h" 115 #include "content/renderer/renderer_webcolorchooser_impl.h"
117 #include "content/renderer/savable_resources.h" 116 #include "content/renderer/savable_resources.h"
118 #include "content/renderer/speech_recognition_dispatcher.h" 117 #include "content/renderer/speech_recognition_dispatcher.h"
119 #include "content/renderer/stats_collection_controller.h" 118 #include "content/renderer/stats_collection_controller.h"
120 #include "content/renderer/stats_collection_observer.h" 119 #include "content/renderer/stats_collection_observer.h"
121 #include "content/renderer/text_input_client_observer.h" 120 #include "content/renderer/text_input_client_observer.h"
122 #include "content/renderer/v8_value_converter_impl.h" 121 #include "content/renderer/v8_value_converter_impl.h"
123 #include "content/renderer/web_ui_extension.h" 122 #include "content/renderer/web_ui_extension.h"
124 #include "content/renderer/web_ui_extension_data.h" 123 #include "content/renderer/web_ui_extension_data.h"
125 #include "content/renderer/websharedworker_proxy.h" 124 #include "content/renderer/websharedworker_proxy.h"
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 #include "content/renderer/pepper/pepper_plugin_registry.h" 244 #include "content/renderer/pepper/pepper_plugin_registry.h"
246 #include "content/renderer/pepper/pepper_webplugin_impl.h" 245 #include "content/renderer/pepper/pepper_webplugin_impl.h"
247 #include "content/renderer/pepper/plugin_module.h" 246 #include "content/renderer/pepper/plugin_module.h"
248 #endif 247 #endif
249 248
250 #if defined(ENABLE_WEBRTC) 249 #if defined(ENABLE_WEBRTC)
251 #include "content/renderer/media/rtc_peer_connection_handler.h" 250 #include "content/renderer/media/rtc_peer_connection_handler.h"
252 #endif 251 #endif
253 252
254 using WebKit::WebAXObject; 253 using WebKit::WebAXObject;
255 using WebKit::WebApplicationCacheHost;
256 using WebKit::WebApplicationCacheHostClient;
257 using WebKit::WebCString; 254 using WebKit::WebCString;
258 using WebKit::WebColor; 255 using WebKit::WebColor;
259 using WebKit::WebColorName; 256 using WebKit::WebColorName;
260 using WebKit::WebConsoleMessage; 257 using WebKit::WebConsoleMessage;
261 using WebKit::WebContextMenuData; 258 using WebKit::WebContextMenuData;
262 using WebKit::WebCookieJar; 259 using WebKit::WebCookieJar;
263 using WebKit::WebData; 260 using WebKit::WebData;
264 using WebKit::WebDataSource; 261 using WebKit::WebDataSource;
265 using WebKit::WebDocument; 262 using WebKit::WebDocument;
266 using WebKit::WebDOMEvent; 263 using WebKit::WebDOMEvent;
(...skipping 6265 matching lines...) Expand 10 before | Expand all | Expand 10 after
6532 for (size_t i = 0; i < icon_urls.size(); i++) { 6529 for (size_t i = 0; i < icon_urls.size(); i++) {
6533 WebURL url = icon_urls[i].iconURL(); 6530 WebURL url = icon_urls[i].iconURL();
6534 if (!url.isEmpty()) 6531 if (!url.isEmpty())
6535 urls.push_back(FaviconURL(url, 6532 urls.push_back(FaviconURL(url,
6536 ToFaviconType(icon_urls[i].iconType()))); 6533 ToFaviconType(icon_urls[i].iconType())));
6537 } 6534 }
6538 SendUpdateFaviconURL(urls); 6535 SendUpdateFaviconURL(urls);
6539 } 6536 }
6540 6537
6541 } // namespace content 6538 } // namespace content
OLDNEW
« content/renderer/render_frame_impl.h ('K') | « content/renderer/render_frame_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698