| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 3 * | 3 * |
| 4 * 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 |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef Sk64_DEFINED | 8 #ifndef Sk64_DEFINED |
| 9 #define Sk64_DEFINED | 9 #define Sk64_DEFINED |
| 10 | 10 |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 178 |
| 179 friend bool operator>=(const Sk64& a, const Sk64& b) { | 179 friend bool operator>=(const Sk64& a, const Sk64& b) { |
| 180 return a.fHi > b.fHi || (a.fHi == b.fHi && a.fLo >= b.fLo); | 180 return a.fHi > b.fHi || (a.fHi == b.fHi && a.fLo >= b.fLo); |
| 181 } | 181 } |
| 182 | 182 |
| 183 // Private to unittests. Parameter is (skiatest::Reporter*) | 183 // Private to unittests. Parameter is (skiatest::Reporter*) |
| 184 static void UnitTestWithReporter(void* skiatest_reporter); | 184 static void UnitTestWithReporter(void* skiatest_reporter); |
| 185 }; | 185 }; |
| 186 | 186 |
| 187 #endif | 187 #endif |
| OLD | NEW |