| OLD | NEW |
| 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 15 matching lines...) Expand all Loading... |
| 26 #include "base/strings/string_split.h" | 26 #include "base/strings/string_split.h" |
| 27 #include "base/strings/sys_string_conversions.h" | 27 #include "base/strings/sys_string_conversions.h" |
| 28 #include "base/time.h" | 28 #include "base/time.h" |
| 29 #include "base/utf_string_conversions.h" | 29 #include "base/utf_string_conversions.h" |
| 30 #include "content/common/appcache/appcache_dispatcher.h" | 30 #include "content/common/appcache/appcache_dispatcher.h" |
| 31 #include "content/common/child_thread.h" | 31 #include "content/common/child_thread.h" |
| 32 #include "content/common/clipboard_messages.h" | 32 #include "content/common/clipboard_messages.h" |
| 33 #include "content/common/database_messages.h" | 33 #include "content/common/database_messages.h" |
| 34 #include "content/common/drag_messages.h" | 34 #include "content/common/drag_messages.h" |
| 35 #include "content/common/fileapi/file_system_dispatcher.h" | 35 #include "content/common/fileapi/file_system_dispatcher.h" |
| 36 #include "content/common/fileapi/webfilesystem_callback_adapters.h" | |
| 37 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 36 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
| 38 #include "content/common/input_messages.h" | 37 #include "content/common/input_messages.h" |
| 39 #include "content/common/java_bridge_messages.h" | 38 #include "content/common/java_bridge_messages.h" |
| 40 #include "content/common/pepper_messages.h" | 39 #include "content/common/pepper_messages.h" |
| 41 #include "content/common/pepper_plugin_registry.h" | 40 #include "content/common/pepper_plugin_registry.h" |
| 42 #include "content/common/quota_dispatcher.h" | 41 #include "content/common/quota_dispatcher.h" |
| 43 #include "content/common/request_extra_data.h" | 42 #include "content/common/request_extra_data.h" |
| 44 #include "content/common/socket_stream_handle_data.h" | 43 #include "content/common/socket_stream_handle_data.h" |
| 45 #include "content/common/ssl_status_serialization.h" | 44 #include "content/common/ssl_status_serialization.h" |
| 46 #include "content/common/view_messages.h" | 45 #include "content/common/view_messages.h" |
| 47 #include "content/common/webmessageportchannel_impl.h" | 46 #include "content/common/webmessageportchannel_impl.h" |
| 47 #include "content/common_child/fileapi/webfilesystem_callback_adapters.h" |
| 48 #include "content/public/common/bindings_policy.h" | 48 #include "content/public/common/bindings_policy.h" |
| 49 #include "content/public/common/content_client.h" | 49 #include "content/public/common/content_client.h" |
| 50 #include "content/public/common/content_constants.h" | 50 #include "content/public/common/content_constants.h" |
| 51 #include "content/public/common/content_switches.h" | 51 #include "content/public/common/content_switches.h" |
| 52 #include "content/public/common/context_menu_params.h" | 52 #include "content/public/common/context_menu_params.h" |
| 53 #include "content/public/common/favicon_url.h" | 53 #include "content/public/common/favicon_url.h" |
| 54 #include "content/public/common/file_chooser_params.h" | 54 #include "content/public/common/file_chooser_params.h" |
| 55 #include "content/public/common/ssl_status.h" | 55 #include "content/public/common/ssl_status.h" |
| 56 #include "content/public/common/three_d_api_types.h" | 56 #include "content/public/common/three_d_api_types.h" |
| 57 #include "content/public/common/url_constants.h" | 57 #include "content/public/common/url_constants.h" |
| (...skipping 6504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6562 WebURL url = icon_urls[i].iconURL(); | 6562 WebURL url = icon_urls[i].iconURL(); |
| 6563 if (!url.isEmpty()) | 6563 if (!url.isEmpty()) |
| 6564 urls.push_back(FaviconURL(url, | 6564 urls.push_back(FaviconURL(url, |
| 6565 ToFaviconType(icon_urls[i].iconType()))); | 6565 ToFaviconType(icon_urls[i].iconType()))); |
| 6566 } | 6566 } |
| 6567 SendUpdateFaviconURL(urls); | 6567 SendUpdateFaviconURL(urls); |
| 6568 } | 6568 } |
| 6569 | 6569 |
| 6570 | 6570 |
| 6571 } // namespace content | 6571 } // namespace content |
| OLD | NEW |