| Index: ui/ozone/platform/dri/ozone_window_dri.cc
|
| diff --git a/ui/ozone/platform/dri/ozone_window_dri.cc b/ui/ozone/platform/dri/ozone_window_dri.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ad998bde4aa1148af34ccbcb512a9c780383d627
|
| --- /dev/null
|
| +++ b/ui/ozone/platform/dri/ozone_window_dri.cc
|
| @@ -0,0 +1,24 @@
|
| +// 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/platform/dri//ozone_window_dri.h"
|
| +
|
| +#include "ui/gfx/ozone/dri/dri_surface_factory.h"
|
| +#include "ui/gfx/vsync_provider.h"
|
| +
|
| +namespace ui {
|
| +
|
| +OzoneWindowDri::OzoneWindowDri(gfx::DriSurfaceFactory* dri) : dri_(dri) {}
|
| +
|
| +OzoneWindowDri::~OzoneWindowDri() {}
|
| +
|
| +gfx::Rect OzoneWindowDri::GetBounds() {
|
| + // This window is locked to the display size.
|
| + // TODO(spang): return dri_->GetNativeDisplaySize();
|
| + return gfx::Rect(0, 0, 2560, 1700);
|
| +}
|
| +
|
| +bool OzoneWindowDri::Resize(const gfx::Rect& bounds) { return false; }
|
| +
|
| +} // namespace ui
|
|
|