| 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_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 | 548 |
| 549 // The ID of the surface corresponding to this render widget. | 549 // The ID of the surface corresponding to this render widget. |
| 550 int surface_id_; | 550 int surface_id_; |
| 551 | 551 |
| 552 // Indicates whether a page is loading or not. | 552 // Indicates whether a page is loading or not. |
| 553 bool is_loading_; | 553 bool is_loading_; |
| 554 | 554 |
| 555 // Indicates whether a page is hidden or not. | 555 // Indicates whether a page is hidden or not. |
| 556 bool is_hidden_; | 556 bool is_hidden_; |
| 557 | 557 |
| 558 // Indicates whether a page is fullscreen or not. |
| 559 bool is_fullscreen_; |
| 560 |
| 558 // True when a page is rendered directly via the GPU process. | 561 // True when a page is rendered directly via the GPU process. |
| 559 bool is_accelerated_compositing_active_; | 562 bool is_accelerated_compositing_active_; |
| 560 | 563 |
| 561 // Set if we are waiting for a repaint ack for the view. | 564 // Set if we are waiting for a repaint ack for the view. |
| 562 bool repaint_ack_pending_; | 565 bool repaint_ack_pending_; |
| 563 | 566 |
| 564 // True when waiting for RESIZE_ACK. | 567 // True when waiting for RESIZE_ACK. |
| 565 bool resize_ack_pending_; | 568 bool resize_ack_pending_; |
| 566 | 569 |
| 567 // The current size of the RenderWidget. | 570 // The current size of the RenderWidget. |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 bool has_touch_handler_; | 689 bool has_touch_handler_; |
| 687 | 690 |
| 688 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 691 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
| 689 | 692 |
| 690 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 693 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 691 }; | 694 }; |
| 692 | 695 |
| 693 } // namespace content | 696 } // namespace content |
| 694 | 697 |
| 695 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 698 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |