OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
4 * | 3 * |
5 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 | 7 |
9 #include "GrTraceMarker.h" | 8 #include "GrTraceMarker.h" |
10 #include "GrTracing.h" | 9 #include "GrTracing.h" |
11 #include "SkString.h" | 10 #include "SkString.h" |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 return marker_string; | 93 return marker_string; |
95 } | 94 } |
96 | 95 |
97 GrTraceMarkerSet::Iter GrTraceMarkerSet::begin() const { | 96 GrTraceMarkerSet::Iter GrTraceMarkerSet::begin() const { |
98 return Iter(this, 0); | 97 return Iter(this, 0); |
99 } | 98 } |
100 | 99 |
101 GrTraceMarkerSet::Iter GrTraceMarkerSet::end() const { | 100 GrTraceMarkerSet::Iter GrTraceMarkerSet::end() const { |
102 return Iter(this, this->fMarkerArray.count()); | 101 return Iter(this, this->fMarkerArray.count()); |
103 } | 102 } |
104 | |
OLD | NEW |