Chromium Code Reviews| Index: runtime/vm/dart_api_state.h |
| diff --git a/runtime/vm/dart_api_state.h b/runtime/vm/dart_api_state.h |
| index fb87b7edf2b457d92fa626c2cd606dd6bc2bf06b..c851b3142194696734f22d4829f846db7a180c1d 100644 |
| --- a/runtime/vm/dart_api_state.h |
| +++ b/runtime/vm/dart_api_state.h |
| @@ -62,9 +62,9 @@ class ApiZone { |
| intptr_t SizeInBytes() const { return zone_.SizeInBytes(); } |
| private: |
| - BaseZone* GetBaseZone() { return &zone_; } |
| + Zone* GetBaseZone() { return &zone_; } |
|
siva
2012/10/05 18:31:58
Should we also rename the getter to GetZone() ?
Tom Ball
2012/10/05 18:55:47
Definitely. I left it in there to make catching r
|
| - BaseZone zone_; |
| + Zone zone_; |
| template<typename T> friend class ApiGrowableArray; |
| DISALLOW_COPY_AND_ASSIGN(ApiZone); |