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

Unified Diff: runtime/vm/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 | « runtime/vm/raw_object.h ('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
diff --git a/runtime/vm/snapshot.h b/runtime/vm/snapshot.h
index 8e387efee7447bb738d5f92419883f1826e21062..edbe4cbc824275a89d3224e01152a73fdf5bef43 100644
--- a/runtime/vm/snapshot.h
+++ b/runtime/vm/snapshot.h
@@ -337,10 +337,9 @@ class BackRefNode : public ValueObject {
};
-class InstructionsReader : public ZoneAllocated {
+class ImageReader : public ZoneAllocated {
public:
- InstructionsReader(const uint8_t* instructions_buffer,
- const uint8_t* data_buffer)
+ ImageReader(const uint8_t* instructions_buffer, const uint8_t* data_buffer)
: instructions_buffer_(instructions_buffer), data_buffer_(data_buffer) {
ASSERT(instructions_buffer != NULL);
ASSERT(data_buffer != NULL);
@@ -355,7 +354,7 @@ class InstructionsReader : public ZoneAllocated {
const uint8_t* instructions_buffer_;
const uint8_t* data_buffer_;
- DISALLOW_COPY_AND_ASSIGN(InstructionsReader);
+ DISALLOW_COPY_AND_ASSIGN(ImageReader);
};
« no previous file with comments | « runtime/vm/raw_object.h ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698