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

Unified Diff: runtime/vm/clustered_snapshot.h

Issue 2860883002: Rename InstructionsReader to ImageReader for symmetry with ImageWriter. (Closed)
Patch Set: reload for missing reitveld diff Created 3 years, 8 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 | « no previous file | runtime/vm/clustered_snapshot.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/clustered_snapshot.h
diff --git a/runtime/vm/clustered_snapshot.h b/runtime/vm/clustered_snapshot.h
index 9f707b689bd74a1c744045b891ff919e39ec7611..2a1121c9c8c3feabc7690e6e220eb144ac8d90ec 100644
--- a/runtime/vm/clustered_snapshot.h
+++ b/runtime/vm/clustered_snapshot.h
@@ -336,11 +336,11 @@ class Deserializer : public StackResource {
}
RawInstructions* GetInstructionsAt(int32_t offset) {
- return instructions_reader_->GetInstructionsAt(offset);
+ return image_reader_->GetInstructionsAt(offset);
}
RawObject* GetObjectAt(int32_t offset) {
- return instructions_reader_->GetObjectAt(offset);
+ return image_reader_->GetObjectAt(offset);
}
RawApiError* VerifyVersionAndFeatures(Isolate* isolate);
@@ -359,7 +359,7 @@ class Deserializer : public StackResource {
Zone* zone_;
Snapshot::Kind kind_;
ReadStream stream_;
- InstructionsReader* instructions_reader_;
+ ImageReader* image_reader_;
intptr_t num_base_objects_;
intptr_t num_objects_;
intptr_t num_clusters_;
« no previous file with comments | « no previous file | runtime/vm/clustered_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698