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

Side by Side Diff: src/vm/ffi_linux.cc

Issue 1209033003: Work in progres, please take a look and give early feedback if this is the way we want to structure… (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: indentation Created 5 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
OLDNEW
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 #ifndef SRC_VM_FLETCH_API_IMPL_H_ 5 #include "src/vm/ffi.h"
6 #define SRC_VM_FLETCH_API_IMPL_H_
7
8 #include "include/fletch_api.h"
9 6
10 namespace fletch { 7 namespace fletch {
11 8
9 const char* ForeignUtils::kLibBundlePrefix = "/lib/lib";
10 const char* ForeignUtils::kLibBundlePostfix = ".so";
11
12 } // namespace fletch 12 } // namespace fletch
13
14 #endif // SRC_VM_FLETCH_API_IMPL_H_
15
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698