#ifndef CHROME_BROWSER_UI_WINDOW_SIZER_WINDOW_SIZER_COMMON_UNITTEST_H_
#define CHROME_BROWSER_UI_WINDOW_SIZER_WINDOW_SIZER_COMMON_UNITTEST_H_
#include "chrome/browser/ui/window_sizer/window_sizer.h"
#include "chrome/test/base/test_browser_window.h"
#include "ui/gfx/geometry/rect.h"
static const gfx::Rect p1024x768(0, 0, 1024, 768);
static const gfx::Rect p1280x1024(0, 0, 1280, 1024);
static const gfx::Rect p1600x1200(0, 0, 1600, 1200);
static const gfx::Rect p1680x1050(0, 0, 1680, 1050);
static const gfx::Rect p1920x1200(0, 0, 1920, 1200);
static const gfx::Rect left_s1024x768(-1024, 0, 1024, 768);
static const gfx::Rect right_s1024x768(1024, 0, 1024, 768);
static const gfx::Rect top_s1024x768(0, -768, 1024, 768);
static const gfx::Rect bottom_s1024x768(0, 768, 1024, 768);
static const gfx::Rect bottom_s1600x1200(0, 1200, 1600, 1200);
static const gfx::Rect taskbar_bottom_work_area(0, 0, 1024, 734);
static const gfx::Rect taskbar_top_work_area(0, 34, 1024, 734);
static const gfx::Rect taskbar_left_work_area(107, 0, 917, 768);
static const gfx::Rect taskbar_right_work_area(0, 0, 917, 768);
class TestStateProvider : public WindowSizer::StateProvider { … };
class WindowSizerTestUtil { … };
#endif