blob: dfdd87d25ce8e7d2bc4323ccdb10a6534ec81021 [file] [log] [blame]
// Copyright 2012 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 UI_COMPOSITOR_TEST_TEST_COMPOSITOR_HOST_H_
#define UI_COMPOSITOR_TEST_TEST_COMPOSITOR_HOST_H_
namespace gfx {
class Rect;
}
namespace ui {
class Compositor;
class ContextFactory;
class TestCompositorHost {
public:
virtual ~TestCompositorHost() {}
// Creates a new TestCompositorHost. The caller owns the returned value.
static TestCompositorHost* Create(const gfx::Rect& bounds,
ui::ContextFactory* context_factory);
// Shows the TestCompositorHost.
virtual void Show() = 0;
virtual Compositor* GetCompositor() = 0;
};
} // namespace ui
#endif // UI_COMPOSITOR_TEST_TEST_COMPOSITOR_HOST_H_