summaryrefslogtreecommitdiffstats
path: root/ui/aura/monitor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ui/aura/monitor.cc')
-rw-r--r--ui/aura/monitor.cc24
1 files changed, 0 insertions, 24 deletions
diff --git a/ui/aura/monitor.cc b/ui/aura/monitor.cc
deleted file mode 100644
index 52d64f0..0000000
--- a/ui/aura/monitor.cc
+++ /dev/null
@@ -1,24 +0,0 @@
-// 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/aura/monitor.h"
-
-namespace aura {
-
-Monitor::Monitor() : device_scale_factor_(1.0f) {
-}
-
-Monitor::~Monitor() {
-}
-
-gfx::Rect Monitor::GetWorkAreaBounds() const {
- // TODO(oshima): For m19, work area/monitor bounds has (0,0) origin
- // because it's simpler and enough. Fix this when real multi monitor
- // support is implemented.
- gfx::Rect bounds(bounds_.size());
- bounds.Inset(work_area_insets_);
- return bounds;
-}
-
-} // namespace aura