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 |
| 5 #include "content/gpu/gpu_process_control_impl.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 |
| 9 namespace content { |
| 10 |
| 11 GpuProcessControlImpl::GpuProcessControlImpl() {} |
| 12 |
| 13 GpuProcessControlImpl::~GpuProcessControlImpl() {} |
| 14 |
| 15 void GpuProcessControlImpl::RegisterApplicationLoaders( |
| 16 URLToLoaderMap* url_to_loader_map) { |
| 17 // TODO(xhwang): Support MojoMediaApplication here. |
| 18 // See http://crbug.com/521755 |
| 19 NOTIMPLEMENTED(); |
| 20 } |
| 21 |
| 22 } // namespace content |
OLD | NEW |