| 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/base/region.h" | 5 #include "cc/base/region.h" |
| 6 | 6 |
| 7 #include "base/debug/trace_event_argument.h" | 7 #include "base/trace_event/trace_event_argument.h" |
| 8 #include "base/values.h" | 8 #include "base/values.h" |
| 9 #include "cc/base/simple_enclosed_region.h" | 9 #include "cc/base/simple_enclosed_region.h" |
| 10 | 10 |
| 11 namespace cc { | 11 namespace cc { |
| 12 | 12 |
| 13 Region::Region() { | 13 Region::Region() { |
| 14 } | 14 } |
| 15 | 15 |
| 16 Region::Region(const Region& region) | 16 Region::Region(const Region& region) |
| 17 : skregion_(region.skregion_) { | 17 : skregion_(region.skregion_) { |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 } | 144 } |
| 145 | 145 |
| 146 Region::Iterator::Iterator(const Region& region) | 146 Region::Iterator::Iterator(const Region& region) |
| 147 : it_(region.skregion_) { | 147 : it_(region.skregion_) { |
| 148 } | 148 } |
| 149 | 149 |
| 150 Region::Iterator::~Iterator() { | 150 Region::Iterator::~Iterator() { |
| 151 } | 151 } |
| 152 | 152 |
| 153 } // namespace cc | 153 } // namespace cc |
| OLD | NEW |