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/aura/client/dispatcher_client.h"
7 #include "ui/aura/root_window.h"
8 #include "ui/aura/window_property.h"
10 DECLARE_WINDOW_PROPERTY_TYPE(aura::client::DispatcherClient
*);
15 DEFINE_LOCAL_WINDOW_PROPERTY_KEY(DispatcherClient
*, kDispatcherClientKey
, NULL
);
17 void SetDispatcherClient(Window
* root_window
, DispatcherClient
* client
) {
18 DCHECK_EQ(root_window
->GetRootWindow(), root_window
);
19 root_window
->SetProperty(kDispatcherClientKey
, client
);
22 DispatcherClient
* GetDispatcherClient(Window
* root_window
) {
24 DCHECK_EQ(root_window
->GetRootWindow(), root_window
);
25 return root_window
? root_window
->GetProperty(kDispatcherClientKey
) : NULL
;