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

Unified Diff: runtime/bin/platform_android.cc

Issue 1839463002: Really remove io support when dart:io is unsupported. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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
Index: runtime/bin/platform_android.cc
diff --git a/runtime/bin/platform_android.cc b/runtime/bin/platform_android.cc
index de60960488540c9c1f973380cc9eccc64e0d9e03..1f29b21d0c50f7e185f7ce43777f92e76135b008 100644
--- a/runtime/bin/platform_android.cc
+++ b/runtime/bin/platform_android.cc
@@ -5,7 +5,6 @@
#include "platform/globals.h"
#if defined(TARGET_OS_ANDROID)
-#include "bin/file.h"
#include "bin/platform.h"
#include <signal.h> // NOLINT
@@ -13,10 +12,16 @@
#include <unistd.h> // NOLINT
#include "bin/fdutils.h"
+#include "bin/file.h"
namespace dart {
namespace bin {
+const char* Platform::executable_name_ = NULL;
+char* Platform::resolved_executable_name_ = NULL;
+int Platform::script_index_ = 1;
+char** Platform::argv_ = NULL;
+
bool Platform::Initialize() {
// Turn off the signal handler for SIGPIPE as it causes the process
// to terminate on writing to a closed pipe. Without the signal
« no previous file with comments | « runtime/bin/platform.cc ('k') | runtime/bin/platform_linux.cc » ('j') | runtime/bin/socket.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698