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

Unified Diff: runtime/bin/dfe.h

Issue 2933203004: Replace the --platform vm option with --kernel-binaries option. (Closed)
Patch Set: s/set_kernel_binaries_directory/SetKernelBinaries Created 3 years, 6 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 | « no previous file | runtime/bin/dfe.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/dfe.h
diff --git a/runtime/bin/dfe.h b/runtime/bin/dfe.h
index 2f61329d9a546c420f430d4b51f8658d0686fcfd..581c14a41301cf0cc5a9d10965e1e34e042c9948 100644
--- a/runtime/bin/dfe.h
+++ b/runtime/bin/dfe.h
@@ -25,9 +25,9 @@ class DFE {
const char* platform_binary_filename() const {
return platform_binary_filename_;
}
- void set_platform_binary_filename(const char* name) {
- platform_binary_filename_ = name;
- }
+
+ void SetKernelBinaries(const char* name);
+
bool UsePlatformBinary() const { return platform_binary_filename_ != NULL; }
void* kernel_platform() const { return kernel_platform_; }
@@ -66,7 +66,7 @@ class DFE {
intptr_t* kernel_ir_size);
const char* frontend_filename_;
- const char* platform_binary_filename_;
+ char* platform_binary_filename_;
void* kernel_platform_;
DISALLOW_COPY_AND_ASSIGN(DFE);
« no previous file with comments | « no previous file | runtime/bin/dfe.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698