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

Side by Side Diff: tools/skpdiff/skpdiff_util.cpp

Issue 19671002: migrate skpdiff to tools (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
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 #include <time.h> 8 #include <time.h>
9 #include <dirent.h> 9 #include <dirent.h>
10 #include <glob.h> 10 #include <glob.h>
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 char** paths = globBuffer.gl_pathv; 110 char** paths = globBuffer.gl_pathv;
111 while(NULL != *paths) { 111 while(NULL != *paths) {
112 entries->push_back(SkString(*paths)); 112 entries->push_back(SkString(*paths));
113 paths++; 113 paths++;
114 } 114 }
115 115
116 globfree(&globBuffer); 116 globfree(&globBuffer);
117 117
118 return true; 118 return true;
119 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698