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

Unified Diff: src/shared/fletch.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/flags_test.cc ('k') | src/shared/fletch.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/fletch.h
diff --git a/src/shared/fletch.h b/src/shared/fletch.h
deleted file mode 100644
index d0d21ec0f629d810911916a5a6bd548665d6b569..0000000000000000000000000000000000000000
--- a/src/shared/fletch.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2014, the Dartino project authors. Please see the AUTHORS file
-// 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_
-
-#include "src/shared/globals.h"
-
-namespace fletch {
-
-// Fletch 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 {
- public:
- // Initialize Fletch and all its subsystems.
- static void Setup();
-
- static void TearDown();
-
- private:
- // Make sure that this class can not ever be instantiated. All its methods
- // should be static class methods.
- DISALLOW_ALLOCATION();
- DISALLOW_IMPLICIT_CONSTRUCTORS(Fletch);
-};
-
-} // namespace fletch
-
-#endif // SRC_SHARED_FLETCH_H_
« no previous file with comments | « src/shared/flags_test.cc ('k') | src/shared/fletch.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698