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

Unified Diff: ui/views/widget/desktop_aura/desktop_native_widget_aura.h

Issue 29983002: Renames DNWA::window_ to content_window_ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to trunk Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/views/widget/desktop_aura/desktop_native_widget_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/desktop_aura/desktop_native_widget_aura.h
diff --git a/ui/views/widget/desktop_aura/desktop_native_widget_aura.h b/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
index ebd3327f5f472c21d0c06b2a42dc9070bc991df9..101cd34d2c33605fd64f541ec48f8ea1f46ec0f4 100644
--- a/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
+++ b/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
@@ -252,15 +252,14 @@ class VIEWS_EXPORT DesktopNativeWidgetAura
// Ownership passed to RootWindow on Init.
DesktopRootWindowHost* desktop_root_window_host_;
- // The content of |root_window_|. WARNING: this may be NULL if deleted out
- // from under us.
- aura::Window* window_;
-
- // Contains the content window defined above. Ensures that ZOrder changes
- // occurring in the content window hierarchy don't affect the other children
- // of the root window.
+ // Child of the root, contains |content_window_|.
aura::Window* content_window_container_;
+ // Child of |content_window_container_|. This is the return value from
+ // GetNativeView().
+ // WARNING: this may be NULL, in particular during shutdown it becomes NULL.
+ aura::Window* content_window_;
+
internal::NativeWidgetDelegate* native_widget_delegate_;
scoped_ptr<aura::client::StackingClient> stacking_client_;
« no previous file with comments | « no previous file | ui/views/widget/desktop_aura/desktop_native_widget_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698