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

Side by Side Diff: tools/OverwriteLine.h

Issue 373383003: ios fixes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: only build gyp on ios 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
« no previous file with comments | « tests/JpegTest.cpp ('k') | tools/Resources.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef OverwriteLine_DEFINED 1 #ifndef OverwriteLine_DEFINED
2 #define OverwriteLine_DEFINED 2 #define OverwriteLine_DEFINED
3 3
4 // Print this string to reset and clear your current terminal line. 4 // Print this string to reset and clear your current terminal line.
5 static const char* kSkOverwriteLine = 5 static const char* kSkOverwriteLine =
6 #ifdef SK_BUILD_FOR_WIN32 6 #ifdef SK_BUILD_FOR_WIN32
7 "\r \r" 7 "\r \r"
8 #elif defined(SK_BUILD_FOR_IOS)
9 "\r"
8 #else 10 #else
9 "\r\033[K" 11 "\r\033[K"
10 #endif 12 #endif
11 ; 13 ;
12 14
13 #endif//OverwriteLine_DEFINED 15 #endif//OverwriteLine_DEFINED
OLDNEW
« no previous file with comments | « tests/JpegTest.cpp ('k') | tools/Resources.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698