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

Unified Diff: tests/PathUtilsTest.cpp

Issue 19394004: NIT MASTER 9000 (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/PathUtilsTest.cpp
diff --git a/tests/PathUtilsTest.cpp b/tests/PathUtilsTest.cpp
index 223682eed8c2a8a229eec98e59fb5e09f1fd3145..15f981bb901a1a9919bd86b2102cc1993ec08536 100644
--- a/tests/PathUtilsTest.cpp
+++ b/tests/PathUtilsTest.cpp
@@ -14,11 +14,9 @@
#include "SkTime.h"
#include "Test.h"
-class SkBitmap;
-
const int kNumIt = 100;
-static void fill_random_bits( int chars, char* bits ){
+static void fill_random_bits(int chars, char* bits){
SkMWCRandom rand(SkTime::GetMSecs());
for (int i = 0; i < chars; ++i){
@@ -26,7 +24,7 @@ static void fill_random_bits( int chars, char* bits ){
}
}
-static int get_bit( const char* buffer, int x ) {
+static int get_bit(const char* buffer, int x) {
int byte = x >> 3;
int bit = x & 7;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698