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

Unified Diff: ash/test/root_window_controller_test_api_chromeos.cc

Issue 261863002: Implementation of the Touch Exploration Mode - Part II (ash) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@touch_exploration_new_UI
Patch Set: Fixing order in EXPECT_EQ Created 6 years, 8 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: 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

Powered by Google App Engine
This is Rietveld 408576698