| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 5 #ifndef VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| 6 #define VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 6 #define VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 // The following factory is used for calls to close the NativeWidgetAura | 159 // The following factory is used for calls to close the NativeWidgetAura |
| 160 // instance. | 160 // instance. |
| 161 base::WeakPtrFactory<NativeWidgetAura> close_widget_factory_; | 161 base::WeakPtrFactory<NativeWidgetAura> close_widget_factory_; |
| 162 | 162 |
| 163 bool can_activate_; | 163 bool can_activate_; |
| 164 | 164 |
| 165 gfx::NativeCursor cursor_; | 165 gfx::NativeCursor cursor_; |
| 166 | 166 |
| 167 ViewProps props_; | 167 ViewProps props_; |
| 168 | 168 |
| 169 scoped_ptr<TooltipManager> tooltip_manager_; |
| 170 |
| 169 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); | 171 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); |
| 170 }; | 172 }; |
| 171 | 173 |
| 172 } // namespace views | 174 } // namespace views |
| 173 | 175 |
| 174 #endif // VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 176 #endif // VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| OLD | NEW |