OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 #include "chromecast/ozone/gpu_platform_support_chromecast.h" |
| 5 |
| 6 #include "chromecast/ozone/surface_factory_chromecast.h" |
| 7 |
| 8 namespace chromecast { |
| 9 namespace ozone { |
| 10 |
| 11 bool GpuPlatformSupportChromecast::OnMessageReceived(const IPC::Message& msg) { |
| 12 return false; |
| 13 } |
| 14 |
| 15 void GpuPlatformSupportChromecast::RelinquishGpuResources( |
| 16 const base::Closure& callback) { |
| 17 parent_->SetToRelinquishDisplay(callback); |
| 18 } |
| 19 |
| 20 IPC::MessageFilter* GpuPlatformSupportChromecast::GetMessageFilter() { |
| 21 return nullptr; |
| 22 } |
| 23 |
| 24 } // namespace ozone |
| 25 } // namespace chromecast |
OLD | NEW |