blob: 3886fc45f4b1d9a3222704a06a5acb19494c493a [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.
#ifndef SERVICES_WS_GPU_HOST_GPU_HOST_DELEGATE_H_
#define SERVICES_WS_GPU_HOST_GPU_HOST_DELEGATE_H_
#include "base/memory/ref_counted.h"
namespace ws {
namespace gpu_host {
class GpuHostDelegate {
public:
virtual ~GpuHostDelegate() {}
virtual void OnGpuServiceInitialized() = 0;
};
} // namespace gpu_host
} // namespace ws
#endif // SERVICES_WS_GPU_HOST_GPU_HOST_DELEGATE_H_