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

Side by Side Diff: cc/picture_layer_tiling_set.h

Issue 11882037: Activate LayerImpl tree with sync+push instead of pointer swap (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 CC_PICTURE_LAYER_TILING_SET_H_ 5 #ifndef CC_PICTURE_LAYER_TILING_SET_H_
6 #define CC_PICTURE_LAYER_TILING_SET_H_ 6 #define CC_PICTURE_LAYER_TILING_SET_H_
7 7
8 #include "cc/picture_layer_tiling.h" 8 #include "cc/picture_layer_tiling.h"
9 #include "cc/region.h" 9 #include "cc/region.h"
10 #include "cc/scoped_ptr_vector.h" 10 #include "cc/scoped_ptr_vector.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 Region current_region_; 100 Region current_region_;
101 Region missing_region_; 101 Region missing_region_;
102 Region::Iterator region_iter_; 102 Region::Iterator region_iter_;
103 }; 103 };
104 104
105 private: 105 private:
106 PictureLayerTilingClient* client_; 106 PictureLayerTilingClient* client_;
107 gfx::Size layer_bounds_; 107 gfx::Size layer_bounds_;
108 ScopedPtrVector<PictureLayerTiling> tilings_; 108 ScopedPtrVector<PictureLayerTiling> tilings_;
109 Region invalidation_;
enne (OOO) 2013/01/17 23:34:55 Oops, thanks.
110 109
111 friend class Iterator; 110 friend class Iterator;
112 }; 111 };
113 112
114 } // namespace cc 113 } // namespace cc
115 114
116 #endif // CC_PICTURE_LAYER_TILING_SET_H_ 115 #endif // CC_PICTURE_LAYER_TILING_SET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698