blob: dcba75066f24009b0560025e0eb1fcf58c91f763 [file] [log] [blame]
// Copyright (c) 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.
#include "ui/compositor/test/test_compositor_host.h"
#include <memory>
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "base/threading/thread_task_runner_handle.h"
#include "base/time/time.h"
#include "ui/compositor/compositor.h"
#include "ui/gfx/win/window_impl.h"
#include <windows.h>
namespace ui {
class TestCompositorHostWin : public TestCompositorHost,
public gfx::WindowImpl {
public:
TestCompositorHostWin(const gfx::Rect& bounds,
ui::ContextFactory* context_factory,
ui::ContextFactoryPrivate* context_factory_private) {
Init(NULL, bounds);
compositor_.reset(new ui::Compositor(
context_factory_private->AllocateFrameSinkId(), context_factory,
context_factory_private, base::ThreadTaskRunnerHandle::Get(),
false /* enable_surface_synchronization */,
false /* enable_pixel_canvas */));
compositor_->SetAcceleratedWidget(hwnd());
compositor_->SetScaleAndSize(1.0f, GetSize(),
viz::LocalSurfaceIdAllocation());
}
~TestCompositorHostWin() override { DestroyWindow(hwnd()); }
// Overridden from TestCompositorHost:
void Show() override {
ShowWindow(hwnd(), SW_SHOWNORMAL);
compositor_->SetVisible(true);
}
ui::Compositor* GetCompositor() override { return compositor_.get(); }
private:
CR_BEGIN_MSG_MAP_EX(TestCompositorHostWin)
CR_MSG_WM_PAINT(OnPaint)
CR_END_MSG_MAP()
void OnPaint(HDC dc) {
compositor_->ScheduleFullRedraw();
ValidateRect(hwnd(), NULL);
}
gfx::Size GetSize() {
RECT r;
GetClientRect(hwnd(), &r);
return gfx::Rect(r).size();
}
std::unique_ptr<ui::Compositor> compositor_;
CR_MSG_MAP_CLASS_DECLARATIONS(TestCompositorHostWin)
DISALLOW_COPY_AND_ASSIGN(TestCompositorHostWin);
};
TestCompositorHost* TestCompositorHost::Create(
const gfx::Rect& bounds,
ui::ContextFactory* context_factory,
ui::ContextFactoryPrivate* context_factory_private) {
return new TestCompositorHostWin(bounds, context_factory,
context_factory_private);
}
} // namespace ui