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

Unified Diff: gm/gmmain.cpp

Issue 428443002: Cleanup: Rename SkOSPath functions. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gm/gm_expectations.cpp ('k') | include/core/SkOSFile.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/gmmain.cpp
diff --git a/gm/gmmain.cpp b/gm/gmmain.cpp
index d4ec45eb9b262c326f255ef9f9e5ee3c0bec3f02..9b51eb0ad6265fc9ad57d74a1a78f03909661db7 100644
--- a/gm/gmmain.cpp
+++ b/gm/gmmain.cpp
@@ -237,7 +237,7 @@ public:
filename.append(renderModeDescriptor);
filename.appendUnichar('.');
filename.append(suffix);
- return SkOSPath::SkPathJoin(path, filename.c_str());
+ return SkOSPath::Join(path, filename.c_str());
}
/**
@@ -257,7 +257,7 @@ public:
filename.append(bitmapDigest.getDigestValue());
filename.appendUnichar('.');
filename.append(kPNG_FileExtension);
- return SkOSPath::SkPathJoin(path, filename.c_str());
+ return SkOSPath::Join(path, filename.c_str());
} else {
return make_filename(path, shortName, configName, renderModeDescriptor,
kPNG_FileExtension);
« no previous file with comments | « gm/gm_expectations.cpp ('k') | include/core/SkOSFile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698