blob: b35476902c4223505576da48976c0c7ace1029d5 [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 base::Token& cdm_guid) {
return nullptr;
}
#endif
} // namespace content