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

Unified Diff: src/snapshot/deserializer.h

Issue 2801073006: Decouple root visitors from object visitors. (Closed)
Patch Set: rebase 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
Index: src/snapshot/deserializer.h
diff --git a/src/snapshot/deserializer.h b/src/snapshot/deserializer.h
index 76259a80cda5e2c0c2a7769a154630e991e31876..c526ab58d4a7cb9c217f0ddc702971de6a8f5318 100644
--- a/src/snapshot/deserializer.h
+++ b/src/snapshot/deserializer.h
@@ -63,12 +63,10 @@ class Deserializer : public SerializerDeserializer {
}
private:
- void VisitPointers(Object** start, Object** end) override;
+ void VisitRootPointers(Root root, Object** start, Object** end) override;
void Synchronize(VisitorSynchronization::SyncTag tag) override;
- void VisitRuntimeEntry(RelocInfo* rinfo) override { UNREACHABLE(); }
-
void Initialize(Isolate* isolate);
bool deserializing_user_code() { return deserializing_user_code_; }

Powered by Google App Engine
This is Rietveld 408576698