Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: ui/compositor/compositor.h

Issue 13604007: Fix large mis-paint when resizing windows aura chrome (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 UI_COMPOSITOR_COMPOSITOR_H_ 5 #ifndef UI_COMPOSITOR_COMPOSITOR_H_
6 #define UI_COMPOSITOR_COMPOSITOR_H_ 6 #define UI_COMPOSITOR_COMPOSITOR_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/hash_tables.h" 10 #include "base/hash_tables.h"
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 348
349 // The device scale factor of the monitor that this compositor is compositing 349 // The device scale factor of the monitor that this compositor is compositing
350 // layers on. 350 // layers on.
351 float device_scale_factor_; 351 float device_scale_factor_;
352 352
353 int last_started_frame_; 353 int last_started_frame_;
354 int last_ended_frame_; 354 int last_ended_frame_;
355 355
356 bool disable_schedule_composite_; 356 bool disable_schedule_composite_;
357 357
358 bool is_resizing_;
359
358 CompositorLock* compositor_lock_; 360 CompositorLock* compositor_lock_;
359 361
360 DISALLOW_COPY_AND_ASSIGN(Compositor); 362 DISALLOW_COPY_AND_ASSIGN(Compositor);
361 }; 363 };
362 364
363 } // namespace ui 365 } // namespace ui
364 366
365 #endif // UI_COMPOSITOR_COMPOSITOR_H_ 367 #endif // UI_COMPOSITOR_COMPOSITOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698