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

Unified Diff: athena/test/test_screen_manager_delegate.h

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.h
diff --git a/athena/test/test_screen_manager_delegate.h b/athena/test/test_screen_manager_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..b14c700bf22290bd575bf969c4d238f0d6a72e05
--- /dev/null
+++ b/athena/test/test_screen_manager_delegate.h
@@ -0,0 +1,36 @@
+// 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.
+
+#ifndef ATHENA_TEST_TEST_SCREEN_MANAGER_DELEGATE_H_
+#define ATHENA_TEST_TEST_SCREEN_MANAGER_DELEGATE_H_
+
+#include "athena/screen/public/screen_manager_delegate.h"
+#include "base/macros.h"
+
+namespace aura {
+class TestScreen;
+}
+
+namespace athena {
+namespace test {
+
+class TestScreenManagerDelegate : public ScreenManagerDelegate {
+ public:
+ explicit TestScreenManagerDelegate(aura::TestScreen* screen);
+ virtual ~TestScreenManagerDelegate();
+
+ private:
+ // ScreenManagerDelegate:
+ virtual void SetWorkAreaInsets(const gfx::Insets& insets) OVERRIDE;
+
+ // Now owned.
sadrul 2014/08/14 21:25:19 *Not or just remove the comment
+ aura::TestScreen* screen_;
+
+ DISALLOW_COPY_AND_ASSIGN(TestScreenManagerDelegate);
+};
+
+} // namespace test
+} // namespace athena
+
+#endif // ATHENA_TEST_TEST_SCREEN_MANAGER_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698