| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 CHROME_RENDERER_RENDER_WIDGET_H_ | 5 #ifndef CHROME_RENDERER_RENDER_WIDGET_H_ |
| 6 #define CHROME_RENDERER_RENDER_WIDGET_H_ | 6 #define CHROME_RENDERER_RENDER_WIDGET_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 | 365 |
| 366 // Indicates if the next sequence of Char events should be suppressed or not. | 366 // Indicates if the next sequence of Char events should be suppressed or not. |
| 367 bool suppress_next_char_events_; | 367 bool suppress_next_char_events_; |
| 368 | 368 |
| 369 // Set to true if painting to the window is handled by the accelerated | 369 // Set to true if painting to the window is handled by the accelerated |
| 370 // compositor. | 370 // compositor. |
| 371 bool is_accelerated_compositing_active_; | 371 bool is_accelerated_compositing_active_; |
| 372 | 372 |
| 373 base::Time animation_floor_time_; | 373 base::Time animation_floor_time_; |
| 374 bool animation_update_pending_; | 374 bool animation_update_pending_; |
| 375 bool animation_waiting_for_paint_; |
| 375 | 376 |
| 376 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 377 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 377 }; | 378 }; |
| 378 | 379 |
| 379 #endif // CHROME_RENDERER_RENDER_WIDGET_H_ | 380 #endif // CHROME_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |