Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 #ifndef UI_VIEWS_WIDGET_WIDGET_H_ | 5 #ifndef UI_VIEWS_WIDGET_WIDGET_H_ |
| 6 #define UI_VIEWS_WIDGET_WIDGET_H_ | 6 #define UI_VIEWS_WIDGET_WIDGET_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <stack> | 9 #include <stack> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 184 NativeWidget* native_widget; | 184 NativeWidget* native_widget; |
| 185 // Aura-only. Provides a DesktopRootWindowHost implementation to use instead | 185 // Aura-only. Provides a DesktopRootWindowHost implementation to use instead |
| 186 // of the default one. | 186 // of the default one. |
| 187 // TODO(beng): Figure out if there's a better way to expose this, e.g. get | 187 // TODO(beng): Figure out if there's a better way to expose this, e.g. get |
| 188 // rid of NW subclasses and do this all via message handling. | 188 // rid of NW subclasses and do this all via message handling. |
| 189 DesktopRootWindowHost* desktop_root_window_host; | 189 DesktopRootWindowHost* desktop_root_window_host; |
| 190 bool top_level; | 190 bool top_level; |
| 191 // Only used by NativeWidgetAura. Specifies the type of layer for the | 191 // Only used by NativeWidgetAura. Specifies the type of layer for the |
| 192 // aura::Window. Default is LAYER_TEXTURED. | 192 // aura::Window. Default is LAYER_TEXTURED. |
| 193 ui::LayerType layer_type; | 193 ui::LayerType layer_type; |
| 194 gfx::NativeView context; | |
|
Ben Goodger (Google)
2012/11/12 16:49:33
document.
scottmg
2012/11/12 18:03:53
Done.
| |
| 194 }; | 195 }; |
| 195 | 196 |
| 196 Widget(); | 197 Widget(); |
| 197 virtual ~Widget(); | 198 virtual ~Widget(); |
| 198 | 199 |
| 199 // Creates a decorated window Widget with the specified properties. | 200 // Creates a decorated window Widget with the specified properties. |
| 200 static Widget* CreateWindow(WidgetDelegate* delegate); | 201 static Widget* CreateWindow(WidgetDelegate* delegate); |
| 201 static Widget* CreateWindowWithParent(WidgetDelegate* delegate, | 202 static Widget* CreateWindowWithParent(WidgetDelegate* delegate, |
| 202 gfx::NativeWindow parent); | 203 gfx::NativeWindow parent); |
| 203 static Widget* CreateWindowWithBounds(WidgetDelegate* delegate, | 204 static Widget* CreateWindowWithBounds(WidgetDelegate* delegate, |
| (...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 807 | 808 |
| 808 // Is |root_layers_| out of date? | 809 // Is |root_layers_| out of date? |
| 809 bool root_layers_dirty_; | 810 bool root_layers_dirty_; |
| 810 | 811 |
| 811 DISALLOW_COPY_AND_ASSIGN(Widget); | 812 DISALLOW_COPY_AND_ASSIGN(Widget); |
| 812 }; | 813 }; |
| 813 | 814 |
| 814 } // namespace views | 815 } // namespace views |
| 815 | 816 |
| 816 #endif // UI_VIEWS_WIDGET_WIDGET_H_ | 817 #endif // UI_VIEWS_WIDGET_WIDGET_H_ |
| OLD | NEW |