| OLD | NEW |
| 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 |
| OLD | NEW |