Chromium Code Reviews| Index: ash/test/root_window_controller_test_api_chromeos.h |
| diff --git a/ash/test/root_window_controller_test_api_chromeos.h b/ash/test/root_window_controller_test_api_chromeos.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3bf6318ae7973b29f6a8d2534e1b5680ecfe00df |
| --- /dev/null |
| +++ b/ash/test/root_window_controller_test_api_chromeos.h |
| @@ -0,0 +1,31 @@ |
| +// Copyright (c) 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 ASH_TEST_ROOT_WINDOW_CONTROLLER_TEST_API_CHROMEOS_H_ |
| +#define ASH_TEST_ROOT_WINDOW_CONTROLLER_TEST_API_CHROMEOS_H_ |
| + |
| +#include "base/basictypes.h" |
| + |
| +namespace ash { |
| +class RootWindowController; |
| + |
| +namespace test { |
| + |
| +class RootWindowControllerTestApi { |
| + public: |
| + RootWindowControllerTestApi(RootWindowController* root_window_controller); |
|
sadrul
2014/05/02 15:47:24
explicit
mfomitchev
2014/05/02 19:22:53
Got rid of this class
|
| + virtual ~RootWindowControllerTestApi(); |
| + |
| + void UpdateTouchExplorationState(); |
| + |
| + private: |
| + RootWindowController* root_window_controller_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(RootWindowControllerTestApi); |
| +}; |
| + |
| +} // namespace test |
| +} // namespace ash |
| + |
| +#endif // ASH_TEST_ROOT_WINDOW_CONTROLLER_TEST_API_CHROMEOS_H_ |