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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 #include "third_party/skia/include/core/SkBitmap.h" | 193 #include "third_party/skia/include/core/SkBitmap.h" |
194 #include "third_party/skia/include/core/SkPicture.h" | 194 #include "third_party/skia/include/core/SkPicture.h" |
195 #include "ui/base/ui_base_switches_util.h" | 195 #include "ui/base/ui_base_switches_util.h" |
196 #include "ui/gfx/native_widget_types.h" | 196 #include "ui/gfx/native_widget_types.h" |
197 #include "ui/gfx/point.h" | 197 #include "ui/gfx/point.h" |
198 #include "ui/gfx/rect.h" | 198 #include "ui/gfx/rect.h" |
199 #include "ui/gfx/rect_conversions.h" | 199 #include "ui/gfx/rect_conversions.h" |
200 #include "ui/gfx/size_conversions.h" | 200 #include "ui/gfx/size_conversions.h" |
201 #include "ui/shell_dialogs/selected_file_info.h" | 201 #include "ui/shell_dialogs/selected_file_info.h" |
202 #include "v8/include/v8.h" | 202 #include "v8/include/v8.h" |
203 #include "webkit/base/file_path_string_conversions.h" | 203 #include "webkit/common/base/file_path_string_conversions.h" |
204 #include "webkit/common/dom_storage/dom_storage_types.h" | 204 #include "webkit/common/dom_storage/dom_storage_types.h" |
205 #include "webkit/common/webdropdata.h" | 205 #include "webkit/common/webdropdata.h" |
206 #include "webkit/glue/webkit_glue.h" | 206 #include "webkit/glue/webkit_glue.h" |
207 #include "webkit/glue/weburlresponse_extradata_impl.h" | 207 #include "webkit/glue/weburlresponse_extradata_impl.h" |
208 #include "webkit/plugins/npapi/plugin_list.h" | 208 #include "webkit/plugins/npapi/plugin_list.h" |
209 #include "webkit/plugins/npapi/plugin_utils.h" | 209 #include "webkit/plugins/npapi/plugin_utils.h" |
210 #include "webkit/plugins/npapi/webplugin_delegate.h" | 210 #include "webkit/plugins/npapi/webplugin_delegate.h" |
211 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" | 211 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" |
212 #include "webkit/plugins/npapi/webplugin_impl.h" | 212 #include "webkit/plugins/npapi/webplugin_impl.h" |
213 #include "webkit/renderer/appcache/web_application_cache_host_impl.h" | 213 #include "webkit/renderer/appcache/web_application_cache_host_impl.h" |
(...skipping 6509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6723 WebURL url = icon_urls[i].iconURL(); | 6723 WebURL url = icon_urls[i].iconURL(); |
6724 if (!url.isEmpty()) | 6724 if (!url.isEmpty()) |
6725 urls.push_back(FaviconURL(url, | 6725 urls.push_back(FaviconURL(url, |
6726 ToFaviconType(icon_urls[i].iconType()))); | 6726 ToFaviconType(icon_urls[i].iconType()))); |
6727 } | 6727 } |
6728 SendUpdateFaviconURL(urls); | 6728 SendUpdateFaviconURL(urls); |
6729 } | 6729 } |
6730 | 6730 |
6731 | 6731 |
6732 } // namespace content | 6732 } // namespace content |
OLD | NEW |