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

Side by Side Diff: content/renderer/render_view_impl.cc

Issue 970023002: Moved gpu factories to media/renderers/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed mojo webmediaplayer_factory.cc Created 5 years, 9 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
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | media/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/gpu_video_accelerator_factories.h"
113 #include "media/renderers/audio_renderer_impl.h" 112 #include "media/renderers/audio_renderer_impl.h"
113 #include "media/renderers/gpu_video_accelerator_factories.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 3907 matching lines...) Expand 10 before | Expand all | Expand 10 after
4031 std::vector<gfx::Size> sizes; 4031 std::vector<gfx::Size> sizes;
4032 ConvertToFaviconSizes(icon_urls[i].sizes(), &sizes); 4032 ConvertToFaviconSizes(icon_urls[i].sizes(), &sizes);
4033 if (!url.isEmpty()) 4033 if (!url.isEmpty())
4034 urls.push_back( 4034 urls.push_back(
4035 FaviconURL(url, ToFaviconType(icon_urls[i].iconType()), sizes)); 4035 FaviconURL(url, ToFaviconType(icon_urls[i].iconType()), sizes));
4036 } 4036 }
4037 SendUpdateFaviconURL(urls); 4037 SendUpdateFaviconURL(urls);
4038 } 4038 }
4039 4039
4040 } // namespace content 4040 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698