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

Unified Diff: sky/engine/core/script/dart_controller.cc

Issue 1153543002: Make hit testing work in layout2.dart (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Add missing file Created 5 years, 7 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: sky/engine/core/script/dart_controller.cc
diff --git a/sky/engine/core/script/dart_controller.cc b/sky/engine/core/script/dart_controller.cc
index 22fe4d38f73edbcdbfb7894bd28acb4e4ee61a31..ec4f0a382728ddf7acf5720ad00c08af2fc27588 100644
--- a/sky/engine/core/script/dart_controller.cc
+++ b/sky/engine/core/script/dart_controller.cc
@@ -258,7 +258,7 @@ static Dart_Isolate IsolateCreateCallback(const char* script_uri,
// for debugging or general Observatory interaction.
EnsureHandleWatcherStarted();
std::string ip = "127.0.0.1";
- const intptr_t port = 0; // Automatic port assignment.
+ const intptr_t port = 8181; // DO NOT COMMIT
eseidel 2015/05/21 18:06:16 Do not commit?
const bool service_isolate_booted =
DartServiceIsolate::Startup(ip, port, LibraryTagHandler, error);
CHECK(service_isolate_booted) << error;

Powered by Google App Engine
This is Rietveld 408576698