Index: runtime/vm/zone.h |
diff --git a/runtime/vm/zone.h b/runtime/vm/zone.h |
index 76cfeef765fc75baf4aba0d999531326487ca4a0..47c2b1874323d40098887d049d5888d49061cf08 100644 |
--- a/runtime/vm/zone.h |
+++ b/runtime/vm/zone.h |
@@ -97,6 +97,9 @@ class BaseZone { |
class Zone : public StackResource { |
public: |
+ // Create an empty zone outside an isolate context. |
+ explicit Zone(); |
siva
2012/02/04 01:55:43
If you use ApiZone I guess these changes to Zone a
Søren Gjesse
2012/02/06 16:25:52
See previous comments.
|
+ |
// Create an empty zone and set is at the current zone for the Isolate. |
explicit Zone(Isolate* isolate); |
@@ -134,7 +137,6 @@ class Zone : public StackResource { |
// Used for chaining zones in order to allow unwinding of stacks. |
Zone* previous_; |
- DISALLOW_IMPLICIT_CONSTRUCTORS(Zone); |
}; |