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

Side by Side Diff: content/public/renderer/content_renderer_client.cc

Issue 2494623002: cc: Remove client/engine LayerTreeHostInProcess. (Closed)
Patch Set: .. Created 4 years, 1 month 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
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/public/renderer/content_renderer_client.h" 5 #include "content/public/renderer/content_renderer_client.h"
6 6
7 #include "cc/blimp/remote_compositor_bridge.h" 7 #include "cc/blimp/remote_compositor_bridge.h"
8 #include "content/public/renderer/media_stream_renderer_factory.h" 8 #include "content/public/renderer/media_stream_renderer_factory.h"
9 #include "media/base/renderer_factory.h" 9 #include "media/base/renderer_factory.h"
10 #include "ui/gfx/icc_profile.h" 10 #include "ui/gfx/icc_profile.h"
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 return nullptr; 178 return nullptr;
179 } 179 }
180 180
181 cc::ImageSerializationProcessor* 181 cc::ImageSerializationProcessor*
182 ContentRendererClient::GetImageSerializationProcessor() { 182 ContentRendererClient::GetImageSerializationProcessor() {
183 return nullptr; 183 return nullptr;
184 } 184 }
185 185
186 std::unique_ptr<cc::RemoteCompositorBridge> 186 std::unique_ptr<cc::RemoteCompositorBridge>
187 ContentRendererClient::CreateRemoteCompositorBridge( 187 ContentRendererClient::CreateRemoteCompositorBridge(
188 cc::RemoteProtoChannel* remote_proto_channel, 188 RemoteProtoChannel* remote_proto_channel,
189 scoped_refptr<base::SingleThreadTaskRunner> compositor_main_task_runner) { 189 scoped_refptr<base::SingleThreadTaskRunner> compositor_main_task_runner) {
190 return nullptr; 190 return nullptr;
191 } 191 }
192 192
193 std::unique_ptr<gfx::ICCProfile> 193 std::unique_ptr<gfx::ICCProfile>
194 ContentRendererClient::GetImageDecodeColorProfile() { 194 ContentRendererClient::GetImageDecodeColorProfile() {
195 return nullptr; 195 return nullptr;
196 } 196 }
197 197
198 bool ContentRendererClient::ShouldReportDetailedMessageForSource( 198 bool ContentRendererClient::ShouldReportDetailedMessageForSource(
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 232
233 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { 233 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() {
234 return true; 234 return true;
235 } 235 }
236 236
237 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { 237 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) {
238 return GURL(); 238 return GURL();
239 } 239 }
240 240
241 } // namespace content 241 } // namespace content
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/public/renderer/remote_proto_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698