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

Side by Side Diff: runtime/vm/isolate.h

Issue 1132323002: Add Service ID zones to service protocol (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_ISOLATE_H_ 5 #ifndef VM_ISOLATE_H_
6 #define VM_ISOLATE_H_ 6 #define VM_ISOLATE_H_
7 7
8 #include "include/dart_api.h" 8 #include "include/dart_api.h"
9 #include "platform/assert.h" 9 #include "platform/assert.h"
10 #include "vm/base_isolate.h" 10 #include "vm/base_isolate.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 class RawGrowableObjectArray; 69 class RawGrowableObjectArray;
70 class RawMint; 70 class RawMint;
71 class RawObject; 71 class RawObject;
72 class RawInteger; 72 class RawInteger;
73 class RawError; 73 class RawError;
74 class RawFloat32x4; 74 class RawFloat32x4;
75 class RawInt32x4; 75 class RawInt32x4;
76 class RawUserTag; 76 class RawUserTag;
77 class SampleBuffer; 77 class SampleBuffer;
78 class SendPort; 78 class SendPort;
79 class ServiceIdZone;
79 class Simulator; 80 class Simulator;
80 class StackResource; 81 class StackResource;
81 class StackZone; 82 class StackZone;
82 class StubCode; 83 class StubCode;
83 class TypeArguments; 84 class TypeArguments;
84 class TypeParameter; 85 class TypeParameter;
85 class UserTag; 86 class UserTag;
86 87
87 88
88 class IsolateVisitor { 89 class IsolateVisitor {
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 uint8_t* serialized_args_; 959 uint8_t* serialized_args_;
959 intptr_t serialized_args_len_; 960 intptr_t serialized_args_len_;
960 uint8_t* serialized_message_; 961 uint8_t* serialized_message_;
961 intptr_t serialized_message_len_; 962 intptr_t serialized_message_len_;
962 bool paused_; 963 bool paused_;
963 }; 964 };
964 965
965 } // namespace dart 966 } // namespace dart
966 967
967 #endif // VM_ISOLATE_H_ 968 #endif // VM_ISOLATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698