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

Side by Side Diff: cc/base/region.cc

Issue 895853003: Update from https://crrev.com/314320 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « cc/base/math_util.cc ('k') | cc/base/synced_property.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #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
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
OLDNEW
« no previous file with comments | « cc/base/math_util.cc ('k') | cc/base/synced_property.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698