blob: 450423fdea9d29824a0f1bbb9a2adb82efd4f23f [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/public/gpu/content_gpu_client.h"
#if BUILDFLAG(ENABLE_LIBRARY_CDMS)
#include "media/cdm/cdm_proxy.h"
#endif
namespace content {
gpu::SyncPointManager* ContentGpuClient::GetSyncPointManager() {
return nullptr;
}
#if BUILDFLAG(ENABLE_LIBRARY_CDMS)
std::unique_ptr<media::CdmProxy> ContentGpuClient::CreateCdmProxy(
const std::string& cdm_guid) {
return nullptr;
}
#endif
} // namespace content