summaryrefslogtreecommitdiffstats
path: root/chromium/ash/accelerators/nested_dispatcher_controller.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ash/accelerators/nested_dispatcher_controller.cc')
-rw-r--r--chromium/ash/accelerators/nested_dispatcher_controller.cc36
1 files changed, 0 insertions, 36 deletions
diff --git a/chromium/ash/accelerators/nested_dispatcher_controller.cc b/chromium/ash/accelerators/nested_dispatcher_controller.cc
deleted file mode 100644
index 82e477cd782..00000000000
--- a/chromium/ash/accelerators/nested_dispatcher_controller.cc
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2012 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/accelerators/nested_dispatcher_controller.h"
-
-#include "ash/accelerators/accelerator_dispatcher.h"
-#include "ash/shell.h"
-#include "base/run_loop.h"
-
-namespace ash {
-
-NestedDispatcherController::NestedDispatcherController() {
-}
-
-NestedDispatcherController::~NestedDispatcherController() {
-}
-
-void NestedDispatcherController::RunWithDispatcher(
- base::MessageLoop::Dispatcher* nested_dispatcher,
- aura::Window* associated_window,
- bool nestable_tasks_allowed) {
- base::MessageLoopForUI* loop = base::MessageLoopForUI::current();
- bool did_allow_task_nesting = loop->NestableTasksAllowed();
- loop->SetNestableTasksAllowed(nestable_tasks_allowed);
-
- AcceleratorDispatcher dispatcher(nested_dispatcher, associated_window);
-
- // TODO(jbates) crbug.com/134753 Find quitters of this RunLoop and have them
- // use run_loop.QuitClosure().
- base::RunLoop run_loop(&dispatcher);
- run_loop.Run();
- loop->SetNestableTasksAllowed(did_allow_task_nesting);
-}
-
-} // namespace ash