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

Side by Side Diff: ui/wm/core/window_modality_controller.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 (c) 2012 The Chromium Authors. All rights reserved. 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 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 "ui/wm/core/window_modality_controller.h" 5 #include "ui/wm/core/window_modality_controller.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
11 #include "ui/aura/client/aura_constants.h" 11 #include "ui/aura/client/aura_constants.h"
12 #include "ui/aura/client/capture_client.h" 12 #include "ui/aura/client/capture_client.h"
13 #include "ui/aura/env.h" 13 #include "ui/aura/env.h"
14 #include "ui/aura/window.h" 14 #include "ui/aura/window.h"
15 #include "ui/aura/window_event_dispatcher.h" 15 #include "ui/aura/window_event_dispatcher.h"
16 #include "ui/aura/window_property.h" 16 #include "ui/base/class_property.h"
17 #include "ui/base/ui_base_types.h" 17 #include "ui/base/ui_base_types.h"
18 #include "ui/events/event.h" 18 #include "ui/events/event.h"
19 #include "ui/events/event_target.h" 19 #include "ui/events/event_target.h"
20 #include "ui/events/gestures/gesture_recognizer.h" 20 #include "ui/events/gestures/gesture_recognizer.h"
21 #include "ui/wm/core/window_animations.h" 21 #include "ui/wm/core/window_animations.h"
22 #include "ui/wm/core/window_util.h" 22 #include "ui/wm/core/window_util.h"
23 23
24 namespace wm { 24 namespace wm {
25 25
26 // Transient child's modal parent. 26 // Transient child's modal parent.
27 extern const aura::WindowProperty<aura::Window*>* const kModalParentKey; 27 extern const aura::WindowProperty<aura::Window*>* const kModalParentKey;
28 DEFINE_WINDOW_PROPERTY_KEY(aura::Window*, kModalParentKey, NULL); 28 DEFINE_UI_CLASS_PROPERTY_KEY(aura::Window*, kModalParentKey, NULL);
29 29
30 namespace { 30 namespace {
31 31
32 bool HasAncestor(aura::Window* window, aura::Window* ancestor) { 32 bool HasAncestor(aura::Window* window, aura::Window* ancestor) {
33 if (!window) 33 if (!window)
34 return false; 34 return false;
35 if (window == ancestor) 35 if (window == ancestor)
36 return true; 36 return true;
37 return HasAncestor(window->parent(), ancestor); 37 return HasAncestor(window->parent(), ancestor);
38 } 38 }
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 } 207 }
208 208
209 AnimateWindow(modal_transient_child, WINDOW_ANIMATION_TYPE_BOUNCE); 209 AnimateWindow(modal_transient_child, WINDOW_ANIMATION_TYPE_BOUNCE);
210 } 210 }
211 if (event->type() == ui::ET_TOUCH_CANCELLED) 211 if (event->type() == ui::ET_TOUCH_CANCELLED)
212 return false; 212 return false;
213 return !!modal_transient_child; 213 return !!modal_transient_child;
214 } 214 }
215 215
216 } // namespace wm 216 } // namespace wm
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698