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

Unified Diff: runtime/bin/isolate_data.h

Issue 1170503004: Initial Timeline Events (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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 | « runtime/bin/dartutils.cc ('k') | runtime/include/dart_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/isolate_data.h
diff --git a/runtime/bin/isolate_data.h b/runtime/bin/isolate_data.h
index eaaa3fbe4c25a8a02f95861c839489ef5036693f..179bde5d1ae36bf01d4656ecaefabf29e8cfc306 100644
--- a/runtime/bin/isolate_data.h
+++ b/runtime/bin/isolate_data.h
@@ -23,7 +23,8 @@ class IsolateData {
explicit IsolateData(const char* url, const char* package_root)
: script_url(strdup(url)),
package_root(NULL),
- udp_receive_buffer(NULL) {
+ udp_receive_buffer(NULL),
+ load_async_id(-1) {
if (package_root != NULL) {
this->package_root = strdup(package_root);
}
@@ -37,6 +38,7 @@ class IsolateData {
char* script_url;
char* package_root;
uint8_t* udp_receive_buffer;
+ int64_t load_async_id;
private:
DISALLOW_COPY_AND_ASSIGN(IsolateData);
« no previous file with comments | « runtime/bin/dartutils.cc ('k') | runtime/include/dart_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698