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 10 matching lines...) Expand all Loading... |
21 #include "base/metrics/histogram.h" | 21 #include "base/metrics/histogram.h" |
22 #include "base/path_service.h" | 22 #include "base/path_service.h" |
23 #include "base/process_util.h" | 23 #include "base/process_util.h" |
24 #include "base/string_number_conversions.h" | 24 #include "base/string_number_conversions.h" |
25 #include "base/string_util.h" | 25 #include "base/string_util.h" |
26 #include "base/strings/string_piece.h" | 26 #include "base/strings/string_piece.h" |
27 #include "base/strings/string_split.h" | 27 #include "base/strings/string_split.h" |
28 #include "base/strings/sys_string_conversions.h" | 28 #include "base/strings/sys_string_conversions.h" |
29 #include "base/time.h" | 29 #include "base/time.h" |
30 #include "base/utf_string_conversions.h" | 30 #include "base/utf_string_conversions.h" |
| 31 #include "content/child/child_thread.h" |
| 32 #include "content/child/fileapi/file_system_dispatcher.h" |
31 #include "content/child/fileapi/webfilesystem_callback_adapters.h" | 33 #include "content/child/fileapi/webfilesystem_callback_adapters.h" |
| 34 #include "content/child/quota_dispatcher.h" |
| 35 #include "content/child/webmessageportchannel_impl.h" |
32 #include "content/common/appcache/appcache_dispatcher.h" | 36 #include "content/common/appcache/appcache_dispatcher.h" |
33 #include "content/common/child_thread.h" | |
34 #include "content/common/clipboard_messages.h" | 37 #include "content/common/clipboard_messages.h" |
35 #include "content/common/database_messages.h" | 38 #include "content/common/database_messages.h" |
36 #include "content/common/drag_messages.h" | 39 #include "content/common/drag_messages.h" |
37 #include "content/common/fileapi/file_system_dispatcher.h" | |
38 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 40 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
39 #include "content/common/input_messages.h" | 41 #include "content/common/input_messages.h" |
40 #include "content/common/java_bridge_messages.h" | 42 #include "content/common/java_bridge_messages.h" |
41 #include "content/common/pepper_messages.h" | 43 #include "content/common/pepper_messages.h" |
42 #include "content/common/pepper_plugin_registry.h" | 44 #include "content/common/pepper_plugin_registry.h" |
43 #include "content/common/quota_dispatcher.h" | |
44 #include "content/common/request_extra_data.h" | 45 #include "content/common/request_extra_data.h" |
45 #include "content/common/socket_stream_handle_data.h" | 46 #include "content/common/socket_stream_handle_data.h" |
46 #include "content/common/ssl_status_serialization.h" | 47 #include "content/common/ssl_status_serialization.h" |
47 #include "content/common/view_messages.h" | 48 #include "content/common/view_messages.h" |
48 #include "content/common/webmessageportchannel_impl.h" | |
49 #include "content/public/common/bindings_policy.h" | 49 #include "content/public/common/bindings_policy.h" |
50 #include "content/public/common/content_client.h" | 50 #include "content/public/common/content_client.h" |
51 #include "content/public/common/content_constants.h" | 51 #include "content/public/common/content_constants.h" |
52 #include "content/public/common/content_switches.h" | 52 #include "content/public/common/content_switches.h" |
53 #include "content/public/common/context_menu_params.h" | 53 #include "content/public/common/context_menu_params.h" |
54 #include "content/public/common/favicon_url.h" | 54 #include "content/public/common/favicon_url.h" |
55 #include "content/public/common/file_chooser_params.h" | 55 #include "content/public/common/file_chooser_params.h" |
56 #include "content/public/common/ssl_status.h" | 56 #include "content/public/common/ssl_status.h" |
57 #include "content/public/common/three_d_api_types.h" | 57 #include "content/public/common/three_d_api_types.h" |
58 #include "content/public/common/url_constants.h" | 58 #include "content/public/common/url_constants.h" |
(...skipping 6657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6716 WebURL url = icon_urls[i].iconURL(); | 6716 WebURL url = icon_urls[i].iconURL(); |
6717 if (!url.isEmpty()) | 6717 if (!url.isEmpty()) |
6718 urls.push_back(FaviconURL(url, | 6718 urls.push_back(FaviconURL(url, |
6719 ToFaviconType(icon_urls[i].iconType()))); | 6719 ToFaviconType(icon_urls[i].iconType()))); |
6720 } | 6720 } |
6721 SendUpdateFaviconURL(urls); | 6721 SendUpdateFaviconURL(urls); |
6722 } | 6722 } |
6723 | 6723 |
6724 | 6724 |
6725 } // namespace content | 6725 } // namespace content |
OLD | NEW |