Chromium Code Reviews| Index: src/vm/ffi.h |
| diff --git a/src/vm/ffi.h b/src/vm/ffi.h |
| index b25aa92108fe4ba361cba365af0fd65d9863cc84..80b6e8b179460581113a0cf58e169ff092f5aab6 100644 |
| --- a/src/vm/ffi.h |
| +++ b/src/vm/ffi.h |
| @@ -24,6 +24,16 @@ class ForeignFunctionInterface { |
| static Mutex* mutex_; |
| }; |
| +// Platform specific ffi constants and methods. |
| +class ForeignUtils { |
| + public: |
| + // We construct default bundle library paths from a prefix and a postfix. |
| + static const char* kLibBundlePrefix; |
| + static const char* kLibBundlePostfix; |
| + // In preparation of supporting windows we have a function for this. |
|
kasperl
2015/07/03 07:49:54
How about a courtesy newline before this comment?
ricow1
2015/07/03 08:57:25
Done.
|
| + static char* DirectoryName(char* path); |
| +}; |
| + |
| } // namespace fletch |
| #endif // SRC_VM_FFI_H_ |