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

Side by Side Diff: tools/skpinfo.cpp

Issue 362773002: Rename SkPicturePlayback to SkPictureData (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix include order Created 6 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
« debugger/QT/SkDebuggerGUI.cpp ('K') | « tools/filtermain.cpp ('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 2014 Google Inc. 2 * Copyright 2014 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 "SkCommandLineFlags.h" 8 #include "SkCommandLineFlags.h"
9 #include "SkPicture.h" 9 #include "SkPicture.h"
10 #include "SkPicturePlayback.h" 10 #include "SkPictureData.h"
11 #include "SkStream.h" 11 #include "SkStream.h"
12 12
13 DEFINE_string2(input, i, "", "skp on which to report"); 13 DEFINE_string2(input, i, "", "skp on which to report");
14 DEFINE_bool2(version, v, true, "version"); 14 DEFINE_bool2(version, v, true, "version");
15 DEFINE_bool2(width, w, true, "width"); 15 DEFINE_bool2(width, w, true, "width");
16 DEFINE_bool2(height, h, true, "height"); 16 DEFINE_bool2(height, h, true, "height");
17 DEFINE_bool2(flags, f, true, "flags"); 17 DEFINE_bool2(flags, f, true, "flags");
18 DEFINE_bool2(tags, t, true, "tags"); 18 DEFINE_bool2(tags, t, true, "tags");
19 DEFINE_bool2(quiet, q, false, "quiet"); 19 DEFINE_bool2(quiet, q, false, "quiet");
20 20
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 } 153 }
154 154
155 return kSuccess; 155 return kSuccess;
156 } 156 }
157 157
158 #if !defined SK_BUILD_FOR_IOS 158 #if !defined SK_BUILD_FOR_IOS
159 int main(int argc, char * const argv[]) { 159 int main(int argc, char * const argv[]) {
160 return tool_main(argc, (char**) argv); 160 return tool_main(argc, (char**) argv);
161 } 161 }
162 #endif 162 #endif
OLDNEW
« debugger/QT/SkDebuggerGUI.cpp ('K') | « tools/filtermain.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698