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

Side by Side Diff: ash/root_window_settings.cc

Issue 2632543003: Refactor and push window properties up to class properties. (Closed)
Patch Set: Created 3 years, 11 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_event_dispatcher.h" 7 #include "ui/aura/window_event_dispatcher.h"
8 #include "ui/aura/window_property.h" 8 #include "ui/base/class_property.h"
9 #include "ui/display/types/display_constants.h" 9 #include "ui/display/types/display_constants.h"
10 10
11 DECLARE_WINDOW_PROPERTY_TYPE(ash::RootWindowSettings*); 11 DECLARE_CLASS_PROPERTY_TYPE(ash::RootWindowSettings*);
12 12
13 namespace ash { 13 namespace ash {
14 14
15 DEFINE_OWNED_WINDOW_PROPERTY_KEY(RootWindowSettings, 15 DEFINE_OWNED_CLASS_PROPERTY_KEY(RootWindowSettings,
16 kRootWindowSettingsKey, 16 kRootWindowSettingsKey,
17 NULL); 17 NULL);
18 18
19 RootWindowSettings::RootWindowSettings() 19 RootWindowSettings::RootWindowSettings()
20 : display_id(display::kInvalidDisplayId), controller(NULL) {} 20 : display_id(display::kInvalidDisplayId), controller(NULL) {}
21 21
22 RootWindowSettings* InitRootWindowSettings(aura::Window* root) { 22 RootWindowSettings* InitRootWindowSettings(aura::Window* root) {
23 RootWindowSettings* settings = new RootWindowSettings(); 23 RootWindowSettings* settings = new RootWindowSettings();
24 root->SetProperty(kRootWindowSettingsKey, settings); 24 root->SetProperty(kRootWindowSettingsKey, settings);
25 return settings; 25 return settings;
26 } 26 }
27 27
28 RootWindowSettings* GetRootWindowSettings(aura::Window* root) { 28 RootWindowSettings* GetRootWindowSettings(aura::Window* root) {
29 return root->GetProperty(kRootWindowSettingsKey); 29 return root->GetProperty(kRootWindowSettingsKey);
30 } 30 }
31 31
32 const RootWindowSettings* GetRootWindowSettings(const aura::Window* root) { 32 const RootWindowSettings* GetRootWindowSettings(const aura::Window* root) {
33 return root->GetProperty(kRootWindowSettingsKey); 33 return root->GetProperty(kRootWindowSettingsKey);
34 } 34 }
35 35
36 } // namespace ash 36 } // namespace ash
OLDNEW
« no previous file with comments | « ash/mus/shadow.cc ('k') | ash/test/ui_controls_factory_ash.cc » ('j') | ui/aura/window.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698