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 "ui/base/range/range.h" | 5 #include "ui/gfx/range/range.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "base/format_macros.h" | 9 #include "base/format_macros.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/strings/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
12 | 12 |
13 namespace ui { | 13 namespace gfx { |
14 | 14 |
15 Range::Range() | 15 Range::Range() |
16 : start_(0), | 16 : start_(0), |
17 end_(0) { | 17 end_(0) { |
18 } | 18 } |
19 | 19 |
20 Range::Range(size_t start, size_t end) | 20 Range::Range(size_t start, size_t end) |
21 : start_(start), | 21 : start_(start), |
22 end_(end) { | 22 end_(end) { |
23 } | 23 } |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 } | 77 } |
78 | 78 |
79 std::string Range::ToString() const { | 79 std::string Range::ToString() const { |
80 return base::StringPrintf("{%" PRIuS ",%" PRIuS "}", start(), end()); | 80 return base::StringPrintf("{%" PRIuS ",%" PRIuS "}", start(), end()); |
81 } | 81 } |
82 | 82 |
83 std::ostream& operator<<(std::ostream& os, const Range& range) { | 83 std::ostream& operator<<(std::ostream& os, const Range& range) { |
84 return os << range.ToString(); | 84 return os << range.ToString(); |
85 } | 85 } |
86 | 86 |
87 } // namespace ui | 87 } // namespace gfx |
OLD | NEW |