Chromium Code Reviews| 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_ |