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

Unified Diff: src/vm/log_print_interceptor.cc

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 | « src/vm/log_print_interceptor.h ('k') | src/vm/lookup_cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/vm/log_print_interceptor.cc
diff --git a/src/vm/log_print_interceptor.cc b/src/vm/log_print_interceptor.cc
index 35692743d307234bcc3daed30f75d9f85a401c20..861d0b14a44cb3ea2c3d38781ef43a3ced9f77b6 100644
--- a/src/vm/log_print_interceptor.cc
+++ b/src/vm/log_print_interceptor.cc
@@ -5,18 +5,18 @@
#include "src/shared/platform.h"
#include "src/vm/log_print_interceptor.h"
-namespace fletch {
+namespace dartino {
void LogPrintInterceptor::Out(char* message) {
char buf[1024];
- snprintf(buf, sizeof(buf), "Fletch VM INFO: %s", message);
+ snprintf(buf, sizeof(buf), "Dartino VM INFO: %s", message);
Platform::WriteText(logPath_, buf, true);
}
void LogPrintInterceptor::Error(char* message) {
char buf[1024];
- snprintf(buf, sizeof(buf), "Fletch VM ERROR: %s", message);
+ snprintf(buf, sizeof(buf), "Dartino VM ERROR: %s", message);
Platform::WriteText(logPath_, buf, true);
}
-} // namespace fletch
+} // namespace dartino
« no previous file with comments | « src/vm/log_print_interceptor.h ('k') | src/vm/lookup_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698