Index: ui/aura/monitor.cc |
diff --git a/ui/aura/monitor.cc b/ui/aura/monitor.cc |
deleted file mode 100644 |
index 52d64f01cb2a3df6cd39497ce4894123a4670f31..0000000000000000000000000000000000000000 |
--- 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 |