Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2309)

Unified Diff: athena/test/test_screen_manager_delegate.cc

Issue 465803002: Make the minimized home card not overlap activities on Athena (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: athena/test/test_screen_manager_delegate.cc
diff --git a/athena/test/test_screen_manager_delegate.cc b/athena/test/test_screen_manager_delegate.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b3d991605a4ceb91906fe1a75b3e3db38d862d76
--- /dev/null
+++ b/athena/test/test_screen_manager_delegate.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 "athena/test/test_screen_manager_delegate.h"
+
+#include "ui/aura/test/test_screen.h"
+
+namespace athena {
+namespace test {
+
+TestScreenManagerDelegate::TestScreenManagerDelegate(aura::TestScreen* screen)
+ : screen_(screen) {
+}
+
+TestScreenManagerDelegate::~TestScreenManagerDelegate() {
+}
+
+void TestScreenManagerDelegate::SetWorkAreaInsets(const gfx::Insets& insets) {
+ screen_->SetWorkAreaInsets(insets);
+}
+
+} // namespace test
+} // namespace athena

Powered by Google App Engine
This is Rietveld 408576698