blob: 1826e7c1e0956ec2c0d1a48d11e64cb978959359 [file] [log] [blame]
// Copyright 2017 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/shell/gpu/shell_content_gpu_client.h"
#include "base/bind.h"
#include "content/shell/common/power_monitor_test_impl.h"
#include "mojo/public/cpp/bindings/strong_binding.h"
#include "services/service_manager/public/cpp/binder_registry.h"
namespace content {
ShellContentGpuClient::ShellContentGpuClient() = default;
ShellContentGpuClient::~ShellContentGpuClient() = default;
void ShellContentGpuClient::InitializeRegistry(
service_manager::BinderRegistry* registry) {
registry->AddInterface<mojom::PowerMonitorTest>(
base::BindRepeating(&PowerMonitorTestImpl::MakeStrongBinding),
base::ThreadTaskRunnerHandle::Get());
}
} // namespace content