| 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 | 568 |
| 569 aura::Window* window_; | 569 aura::Window* window_; |
| 570 | 570 |
| 571 scoped_ptr<WindowObserver> window_observer_; | 571 scoped_ptr<WindowObserver> window_observer_; |
| 572 | 572 |
| 573 // Are we in the process of closing? Tracked so fullscreen views can avoid | 573 // Are we in the process of closing? Tracked so fullscreen views can avoid |
| 574 // sending a second shutdown request to the host when they lose the focus | 574 // sending a second shutdown request to the host when they lose the focus |
| 575 // after requesting shutdown for another reason (e.g. Escape key). | 575 // after requesting shutdown for another reason (e.g. Escape key). |
| 576 bool in_shutdown_; | 576 bool in_shutdown_; |
| 577 | 577 |
| 578 // True if in the process of handling a window bounds changed notification. |
| 579 bool in_bounds_changed_; |
| 580 |
| 578 // Is this a fullscreen view? | 581 // Is this a fullscreen view? |
| 579 bool is_fullscreen_; | 582 bool is_fullscreen_; |
| 580 | 583 |
| 581 // Our parent host view, if this is a popup. NULL otherwise. | 584 // Our parent host view, if this is a popup. NULL otherwise. |
| 582 RenderWidgetHostViewAura* popup_parent_host_view_; | 585 RenderWidgetHostViewAura* popup_parent_host_view_; |
| 583 | 586 |
| 584 // Our child popup host. NULL if we do not have a child popup. | 587 // Our child popup host. NULL if we do not have a child popup. |
| 585 RenderWidgetHostViewAura* popup_child_host_view_; | 588 RenderWidgetHostViewAura* popup_child_host_view_; |
| 586 | 589 |
| 587 class EventFilterForPopupExit; | 590 class EventFilterForPopupExit; |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 // passed to windowless plugins like Flash/Silverlight, etc as the | 775 // passed to windowless plugins like Flash/Silverlight, etc as the |
| 773 // container window. | 776 // container window. |
| 774 HWND plugin_parent_window_; | 777 HWND plugin_parent_window_; |
| 775 #endif | 778 #endif |
| 776 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 779 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 777 }; | 780 }; |
| 778 | 781 |
| 779 } // namespace content | 782 } // namespace content |
| 780 | 783 |
| 781 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 784 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |