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 #include "cc/region.h" | 5 #include "cc/base/region.h" |
6 | 6 |
7 namespace cc { | 7 namespace cc { |
8 | 8 |
9 Region::Region() { | 9 Region::Region() { |
10 } | 10 } |
11 | 11 |
12 Region::Region(const Region& region) | 12 Region::Region(const Region& region) |
13 : skregion_(region.skregion_) { | 13 : skregion_(region.skregion_) { |
14 } | 14 } |
15 | 15 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 } | 107 } |
108 | 108 |
109 Region::Iterator::Iterator(const Region& region) | 109 Region::Iterator::Iterator(const Region& region) |
110 : it_(region.skregion_) { | 110 : it_(region.skregion_) { |
111 } | 111 } |
112 | 112 |
113 Region::Iterator::~Iterator() { | 113 Region::Iterator::~Iterator() { |
114 } | 114 } |
115 | 115 |
116 } // namespace cc | 116 } // namespace cc |
OLD | NEW |