blob: 31e79ccbfd8e176a072fdb1fbbc8d9ea715dfc87 [file] [log] [blame]
// Copyright 2014 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 "ui/ozone/public/gpu_platform_support_host.h"
#include "base/trace_event/trace_event.h"
namespace ui {
namespace {
// No-op implementations of GpuPlatformSupportHost.
class StubGpuPlatformSupportHost : public GpuPlatformSupportHost {
public:
// GpuPlatformSupportHost:
void OnChannelDestroyed(int host_id) override {}
void OnGpuServiceLaunched(
int host_id,
scoped_refptr<base::SingleThreadTaskRunner> ui_runner,
scoped_refptr<base::SingleThreadTaskRunner> io_runner,
GpuHostBindInterfaceCallback binder,
GpuHostTerminateCallback terminate_callback) override {}
};
} // namespace
GpuPlatformSupportHost::GpuPlatformSupportHost() {
}
GpuPlatformSupportHost::~GpuPlatformSupportHost() {
}
GpuPlatformSupportHost* CreateStubGpuPlatformSupportHost() {
return new StubGpuPlatformSupportHost;
}
} // namespace ui