Index: ash/test/root_window_controller_test_api_chromeos.cc |
diff --git a/ash/test/root_window_controller_test_api_chromeos.cc b/ash/test/root_window_controller_test_api_chromeos.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b9a1429c249986806058bad627d67330ae9aca4a |
--- /dev/null |
+++ b/ash/test/root_window_controller_test_api_chromeos.cc |
@@ -0,0 +1,23 @@ |
+// 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. |
+ |
+#include "ash/test/root_window_controller_test_api_chromeos.h" |
+ |
+#include "ash/root_window_controller.h" |
+ |
+namespace ash { |
+namespace test { |
+ |
+RootWindowControllerTestApi::RootWindowControllerTestApi( |
+ RootWindowController* root_window_controller) |
+ : root_window_controller_(root_window_controller) {} |
+ |
+RootWindowControllerTestApi::~RootWindowControllerTestApi() {} |
+ |
+void RootWindowControllerTestApi::UpdateTouchExplorationState() { |
+ root_window_controller_->UpdateTouchExplorationState(); |
+} |
+ |
+} // namespace test |
+} // namespace ash |