summaryrefslogtreecommitdiffstats
path: root/chromium/ash/cancel_mode.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ash/cancel_mode.cc')
-rw-r--r--chromium/ash/cancel_mode.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/chromium/ash/cancel_mode.cc b/chromium/ash/cancel_mode.cc
deleted file mode 100644
index df775d2ce4c..00000000000
--- a/chromium/ash/cancel_mode.cc
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright (c) 2013 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/cancel_mode.h"
-
-#include "ash/root_window_controller.h"
-#include "ash/shell.h"
-#include "ui/aura/root_window.h"
-
-namespace ash {
-
-void DispatchCancelMode() {
- Shell::RootWindowControllerList controllers(
- Shell::GetAllRootWindowControllers());
- for (Shell::RootWindowControllerList::const_iterator i = controllers.begin();
- i != controllers.end(); ++i) {
- (*i)->dispatcher()->AsRootWindowHostDelegate()->OnHostCancelMode();
- }
-}
-
-} // namespace ash