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