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: src/shared/platform_linux.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/shared/platform_cmsis.cc ('k') | src/shared/platform_lk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/platform_linux.cc
diff --git a/src/shared/platform_linux.cc b/src/shared/platform_linux.cc
index 2c70546edb01a3f04d28f54f828c769042fd9f86..651229f40df7e511e921ab08600ddeb3c32861a8 100644
--- a/src/shared/platform_linux.cc
+++ b/src/shared/platform_linux.cc
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE.md file.
-#if defined(FLETCH_TARGET_OS_LINUX)
+#if defined(DARTINO_TARGET_OS_LINUX)
#include <errno.h>
#include <stdlib.h>
@@ -12,7 +12,7 @@
#include "src/shared/assert.h"
#include "src/shared/platform.h"
-namespace fletch {
+namespace dartino {
void GetPathOfExecutable(char* path, size_t path_length) {
ssize_t length = readlink("/proc/self/exe", path, path_length - 1);
@@ -33,6 +33,6 @@ int Platform::GetLocalTimeZoneOffset() {
return static_cast<int>(-timezone);
}
-} // namespace fletch
+} // namespace dartino
-#endif // defined(FLETCH_TARGET_OS_LINUX)
+#endif // defined(DARTINO_TARGET_OS_LINUX)
« no previous file with comments | « src/shared/platform_cmsis.cc ('k') | src/shared/platform_lk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698