| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 #include "content/renderer/speech_recognition_dispatcher.h" | 102 #include "content/renderer/speech_recognition_dispatcher.h" |
| 103 #include "content/renderer/stats_collection_controller.h" | 103 #include "content/renderer/stats_collection_controller.h" |
| 104 #include "content/renderer/stats_collection_observer.h" | 104 #include "content/renderer/stats_collection_observer.h" |
| 105 #include "content/renderer/text_input_client_observer.h" | 105 #include "content/renderer/text_input_client_observer.h" |
| 106 #include "content/renderer/web_ui_extension.h" | 106 #include "content/renderer/web_ui_extension.h" |
| 107 #include "content/renderer/web_ui_extension_data.h" | 107 #include "content/renderer/web_ui_extension_data.h" |
| 108 #include "content/renderer/web_ui_mojo.h" | 108 #include "content/renderer/web_ui_mojo.h" |
| 109 #include "content/renderer/websharedworker_proxy.h" | 109 #include "content/renderer/websharedworker_proxy.h" |
| 110 #include "media/audio/audio_output_device.h" | 110 #include "media/audio/audio_output_device.h" |
| 111 #include "media/base/media_switches.h" | 111 #include "media/base/media_switches.h" |
| 112 #include "media/filters/audio_renderer_impl.h" | |
| 113 #include "media/filters/gpu_video_accelerator_factories.h" | 112 #include "media/filters/gpu_video_accelerator_factories.h" |
| 113 #include "media/renderers/audio_renderer_impl.h" |
| 114 #include "net/base/data_url.h" | 114 #include "net/base/data_url.h" |
| 115 #include "net/base/escape.h" | 115 #include "net/base/escape.h" |
| 116 #include "net/base/net_errors.h" | 116 #include "net/base/net_errors.h" |
| 117 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 117 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
| 118 #include "net/http/http_util.h" | 118 #include "net/http/http_util.h" |
| 119 #include "skia/ext/platform_canvas.h" | 119 #include "skia/ext/platform_canvas.h" |
| 120 #include "third_party/WebKit/public/platform/WebCString.h" | 120 #include "third_party/WebKit/public/platform/WebCString.h" |
| 121 #include "third_party/WebKit/public/platform/WebConnectionType.h" | 121 #include "third_party/WebKit/public/platform/WebConnectionType.h" |
| 122 #include "third_party/WebKit/public/platform/WebDragData.h" | 122 #include "third_party/WebKit/public/platform/WebDragData.h" |
| 123 #include "third_party/WebKit/public/platform/WebHTTPBody.h" | 123 #include "third_party/WebKit/public/platform/WebHTTPBody.h" |
| (...skipping 3933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4057 std::vector<gfx::Size> sizes; | 4057 std::vector<gfx::Size> sizes; |
| 4058 ConvertToFaviconSizes(icon_urls[i].sizes(), &sizes); | 4058 ConvertToFaviconSizes(icon_urls[i].sizes(), &sizes); |
| 4059 if (!url.isEmpty()) | 4059 if (!url.isEmpty()) |
| 4060 urls.push_back( | 4060 urls.push_back( |
| 4061 FaviconURL(url, ToFaviconType(icon_urls[i].iconType()), sizes)); | 4061 FaviconURL(url, ToFaviconType(icon_urls[i].iconType()), sizes)); |
| 4062 } | 4062 } |
| 4063 SendUpdateFaviconURL(urls); | 4063 SendUpdateFaviconURL(urls); |
| 4064 } | 4064 } |
| 4065 | 4065 |
| 4066 } // namespace content | 4066 } // namespace content |
| OLD | NEW |