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

Side by Side Diff: ash/root_window_settings.cc

Issue 2632543003: Refactor and push window properties up to class properties. (Closed)
Patch Set: More build fixes Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/root_window_settings.h" 5 #include "ash/root_window_settings.h"
6 6
7 #include "ui/aura/window.h"
7 #include "ui/aura/window_event_dispatcher.h" 8 #include "ui/aura/window_event_dispatcher.h"
8 #include "ui/aura/window_property.h" 9 #include "ui/base/class_property.h"
9 #include "ui/display/types/display_constants.h" 10 #include "ui/display/types/display_constants.h"
10 11
11 DECLARE_WINDOW_PROPERTY_TYPE(ash::RootWindowSettings*); 12 DECLARE_UI_CLASS_PROPERTY_TYPE(ash::RootWindowSettings*);
12 13
13 namespace ash { 14 namespace ash {
14 15
15 DEFINE_OWNED_WINDOW_PROPERTY_KEY(RootWindowSettings, 16 DEFINE_OWNED_UI_CLASS_PROPERTY_KEY(RootWindowSettings,
16 kRootWindowSettingsKey, 17 kRootWindowSettingsKey,
17 NULL); 18 NULL);
18 19
19 RootWindowSettings::RootWindowSettings() 20 RootWindowSettings::RootWindowSettings()
20 : display_id(display::kInvalidDisplayId), controller(NULL) {} 21 : display_id(display::kInvalidDisplayId), controller(NULL) {}
21 22
22 RootWindowSettings* InitRootWindowSettings(aura::Window* root) { 23 RootWindowSettings* InitRootWindowSettings(aura::Window* root) {
23 RootWindowSettings* settings = new RootWindowSettings(); 24 RootWindowSettings* settings = new RootWindowSettings();
24 root->SetProperty(kRootWindowSettingsKey, settings); 25 root->SetProperty(kRootWindowSettingsKey, settings);
25 return settings; 26 return settings;
26 } 27 }
27 28
28 RootWindowSettings* GetRootWindowSettings(aura::Window* root) { 29 RootWindowSettings* GetRootWindowSettings(aura::Window* root) {
29 return root->GetProperty(kRootWindowSettingsKey); 30 return root->GetProperty(kRootWindowSettingsKey);
30 } 31 }
31 32
32 const RootWindowSettings* GetRootWindowSettings(const aura::Window* root) { 33 const RootWindowSettings* GetRootWindowSettings(const aura::Window* root) {
33 return root->GetProperty(kRootWindowSettingsKey); 34 return root->GetProperty(kRootWindowSettingsKey);
34 } 35 }
35 36
36 } // namespace ash 37 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698