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

Side by Side Diff: chromecast/renderer/cast_content_renderer_client_simple.cc

Issue 1171303002: Chromecast: move link-time decisions to inheritance-based Content*Client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 5 years, 6 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "chromecast/renderer/cast_content_renderer_client.h" 5 #include "chromecast/renderer/cast_content_renderer_client.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "ipc/message_filter.h" 8 #include "ipc/message_filter.h"
9 9
10 namespace chromecast { 10 namespace chromecast {
11 namespace shell { 11 namespace shell {
12 12
13 // static 13 // static
14 scoped_ptr<CastContentRendererClient> CastContentRendererClient::Create() { 14 scoped_ptr<CastContentRendererClient> CastContentRendererClient::Create() {
15 return make_scoped_ptr(new CastContentRendererClient()); 15 return make_scoped_ptr(new CastContentRendererClient());
16 } 16 }
17 17
18 void PlatformAddRendererNativeBindings(blink::WebLocalFrame* frame) {
19 }
20
21 std::vector<scoped_refptr<IPC::MessageFilter>>
22 CastContentRendererClient::PlatformGetRendererMessageFilters() {
23 return std::vector<scoped_refptr<IPC::MessageFilter>>();
24 }
25
26 } // namespace shell 18 } // namespace shell
27 } // namespace chromecast 19 } // namespace chromecast
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698