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

Side by Side Diff: src/core/Sk64.h

Issue 134373006: remove (now unused) Sk64 -- just use int64_t (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « include/utils/SkRandom.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « include/utils/SkRandom.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698