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

Unified Diff: src/shared/dartino.h

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/connection.cc ('k') | src/shared/dartino.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/dartino.h
diff --git a/src/shared/fletch.h b/src/shared/dartino.h
similarity index 65%
rename from src/shared/fletch.h
rename to src/shared/dartino.h
index d0d21ec0f629d810911916a5a6bd548665d6b569..760578dd5755b1b27540d5c817e252318000bf58 100644
--- a/src/shared/fletch.h
+++ b/src/shared/dartino.h
@@ -2,19 +2,19 @@
// 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.
-#ifndef SRC_SHARED_FLETCH_H_
-#define SRC_SHARED_FLETCH_H_
+#ifndef SRC_SHARED_DARTINO_H_
+#define SRC_SHARED_DARTINO_H_
#include "src/shared/globals.h"
-namespace fletch {
+namespace dartino {
-// Fletch is a helper class used to call system wide functions such as
+// Dartino is a helper class used to call system wide functions such as
// initialization. The definition of the class is shared between the
// compiler and the VM, but both of these have their own implementation.
-class Fletch {
+class Dartino {
public:
- // Initialize Fletch and all its subsystems.
+ // Initialize Dartino and all its subsystems.
static void Setup();
static void TearDown();
@@ -23,9 +23,9 @@ class Fletch {
// Make sure that this class can not ever be instantiated. All its methods
// should be static class methods.
DISALLOW_ALLOCATION();
- DISALLOW_IMPLICIT_CONSTRUCTORS(Fletch);
+ DISALLOW_IMPLICIT_CONSTRUCTORS(Dartino);
};
-} // namespace fletch
+} // namespace dartino
-#endif // SRC_SHARED_FLETCH_H_
+#endif // SRC_SHARED_DARTINO_H_
« no previous file with comments | « src/shared/connection.cc ('k') | src/shared/dartino.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698