| 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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 | 577 |
| 578 aura::Window* window_; | 578 aura::Window* window_; |
| 579 | 579 |
| 580 scoped_ptr<WindowObserver> window_observer_; | 580 scoped_ptr<WindowObserver> window_observer_; |
| 581 | 581 |
| 582 // Are we in the process of closing? Tracked so fullscreen views can avoid | 582 // Are we in the process of closing? Tracked so fullscreen views can avoid |
| 583 // sending a second shutdown request to the host when they lose the focus | 583 // sending a second shutdown request to the host when they lose the focus |
| 584 // after requesting shutdown for another reason (e.g. Escape key). | 584 // after requesting shutdown for another reason (e.g. Escape key). |
| 585 bool in_shutdown_; | 585 bool in_shutdown_; |
| 586 | 586 |
| 587 // True if in the process of handling a window bounds changed notification. |
| 588 bool in_bounds_changed_; |
| 589 |
| 587 // Is this a fullscreen view? | 590 // Is this a fullscreen view? |
| 588 bool is_fullscreen_; | 591 bool is_fullscreen_; |
| 589 | 592 |
| 590 // Our parent host view, if this is a popup. NULL otherwise. | 593 // Our parent host view, if this is a popup. NULL otherwise. |
| 591 RenderWidgetHostViewAura* popup_parent_host_view_; | 594 RenderWidgetHostViewAura* popup_parent_host_view_; |
| 592 | 595 |
| 593 // Our child popup host. NULL if we do not have a child popup. | 596 // Our child popup host. NULL if we do not have a child popup. |
| 594 RenderWidgetHostViewAura* popup_child_host_view_; | 597 RenderWidgetHostViewAura* popup_child_host_view_; |
| 595 | 598 |
| 596 class EventFilterForPopupExit; | 599 class EventFilterForPopupExit; |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 // passed to windowless plugins like Flash/Silverlight, etc as the | 785 // passed to windowless plugins like Flash/Silverlight, etc as the |
| 783 // container window. | 786 // container window. |
| 784 HWND plugin_parent_window_; | 787 HWND plugin_parent_window_; |
| 785 #endif | 788 #endif |
| 786 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 789 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 787 }; | 790 }; |
| 788 | 791 |
| 789 } // namespace content | 792 } // namespace content |
| 790 | 793 |
| 791 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 794 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |