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

Unified Diff: gm/gm.h

Issue 14890017: GM: include filename extension (.png) of each output file in JSON summary (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 7 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 | gm/gm_expectations.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/gm.h
===================================================================
--- gm/gm.h (revision 9077)
+++ gm/gm.h (working copy)
@@ -22,6 +22,11 @@
namespace skiagm {
+ // TODO(epoger): Right now, various places in the code assume that all the
+ // image files read/written by GM use this file extension.
+ // Search for references to this constant to find these assumptions.
+ const static char kPNG_FileExtension[] = "png";
+
static inline SkISize make_isize(int w, int h) {
SkISize sz;
sz.set(w, h);
« no previous file with comments | « no previous file | gm/gm_expectations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698