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

Unified Diff: src/utils/SkRTConf.cpp

Issue 1467533003: Eliminate SkFILE - it always is the same as FILE. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-11-20 (Friday) 14:01:26 EST Created 5 years, 1 month 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 | « src/ports/SkOSFile_win.cpp ('k') | src/utils/SkWhitelistTypefaces.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/utils/SkRTConf.cpp
diff --git a/src/utils/SkRTConf.cpp b/src/utils/SkRTConf.cpp
index 9c076cbb16290d7424bc0e257ecd9ed4dbf496eb..2dfa47efc71015c12864d3ae585dd681dd027075 100644
--- a/src/utils/SkRTConf.cpp
+++ b/src/utils/SkRTConf.cpp
@@ -12,7 +12,7 @@
SkRTConfRegistry::SkRTConfRegistry(): fConfs(100) {
- SkFILE *fp = sk_fopen(configFileLocation(), kRead_SkFILE_Flag);
+ FILE *fp = sk_fopen(configFileLocation(), kRead_SkFILE_Flag);
if (!fp) {
return;
@@ -77,7 +77,7 @@ const char *SkRTConfRegistry::configFileLocation() const {
// to trigger this, make a config file of zero size.
void SkRTConfRegistry::possiblyDumpFile() const {
const char *path = configFileLocation();
- SkFILE *fp = sk_fopen(path, kRead_SkFILE_Flag);
+ FILE *fp = sk_fopen(path, kRead_SkFILE_Flag);
if (!fp) {
return;
}
« no previous file with comments | « src/ports/SkOSFile_win.cpp ('k') | src/utils/SkWhitelistTypefaces.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698