1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/wm/public/dispatcher_client.h"
7 #include "base/callback.h"
8 #include "ui/aura/window.h"
9 #include "ui/aura/window_property.h"
11 DECLARE_WINDOW_PROPERTY_TYPE(aura::client::DispatcherClient
*);
16 DispatcherRunLoop::DispatcherRunLoop(DispatcherClient
* client
,
17 base::MessagePumpDispatcher
* dispatcher
) {
18 client
->PrepareNestedLoopClosures(dispatcher
, &run_closure_
, &quit_closure_
);
21 DispatcherRunLoop::~DispatcherRunLoop() {
24 void DispatcherRunLoop::Run() {
25 base::MessageLoopForUI
* loop
= base::MessageLoopForUI::current();
26 base::MessageLoopForUI::ScopedNestableTaskAllower
allow_nested(loop
);
30 base::Closure
DispatcherRunLoop::QuitClosure() {
34 void DispatcherRunLoop::Quit() {
38 DEFINE_LOCAL_WINDOW_PROPERTY_KEY(DispatcherClient
*, kDispatcherClientKey
, NULL
);
40 void SetDispatcherClient(Window
* root_window
, DispatcherClient
* client
) {
41 DCHECK_EQ(root_window
->GetRootWindow(), root_window
);
42 root_window
->SetProperty(kDispatcherClientKey
, client
);
45 DispatcherClient
* GetDispatcherClient(Window
* root_window
) {
47 DCHECK_EQ(root_window
->GetRootWindow(), root_window
);
48 return root_window
? root_window
->GetProperty(kDispatcherClientKey
) : NULL
;