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

Unified Diff: runtime/vm/snapshot.h

Issue 13093012: More cleanup in preparation for removing support for dart:scalarlist in the VM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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/vm/raw_object_snapshot.cc ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot.h
===================================================================
--- runtime/vm/snapshot.h (revision 20529)
+++ runtime/vm/snapshot.h (working copy)
@@ -23,7 +23,7 @@
class Array;
class Class;
class ClassTable;
-class ExternalUint8Array;
+class ExternalTypedData;
class GrowableObjectArray;
class Heap;
class LanguageError;
@@ -225,7 +225,7 @@
AbstractTypeArguments* TypeArgumentsHandle() { return &type_arguments_; }
Array* TokensHandle() { return &tokens_; }
TokenStream* StreamHandle() { return &stream_; }
- ExternalUint8Array* DataHandle() { return &data_; }
+ ExternalTypedData* DataHandle() { return &data_; }
UnhandledException* ErrorHandle() { return &error_; }
// Reads an object.
@@ -326,7 +326,7 @@
AbstractTypeArguments& type_arguments_; // Temporary type argument handle.
Array& tokens_; // Temporary tokens handle.
TokenStream& stream_; // Temporary token stream handle.
- ExternalUint8Array& data_; // Temporary stream data handle.
+ ExternalTypedData& data_; // Temporary stream data handle.
UnhandledException& error_; // Error handle.
GrowableArray<BackRefNode*> backward_references_;
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698