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

Unified Diff: src/snapshot/partial-serializer.h

Issue 2741683004: [rename] Rename internal field to embedder field. (Closed)
Patch Set: [rename] Rename internal field to embedder field. Created 3 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 | « src/snapshot/deserializer.cc ('k') | src/snapshot/partial-serializer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/snapshot/partial-serializer.h
diff --git a/src/snapshot/partial-serializer.h b/src/snapshot/partial-serializer.h
index 2d7c9ed41516e73b64f0c873f12c75476b878ee2..313a8000425c27c58de3fc20bc85365f28db56eb 100644
--- a/src/snapshot/partial-serializer.h
+++ b/src/snapshot/partial-serializer.h
@@ -16,7 +16,7 @@ class StartupSerializer;
class PartialSerializer : public Serializer {
public:
PartialSerializer(Isolate* isolate, StartupSerializer* startup_serializer,
- v8::SerializeInternalFieldsCallback callback);
+ v8::SerializeEmbedderFieldsCallback callback);
~PartialSerializer() override;
@@ -29,11 +29,11 @@ class PartialSerializer : public Serializer {
bool ShouldBeInThePartialSnapshotCache(HeapObject* o);
- void SerializeInternalFields();
+ void SerializeEmbedderFields();
StartupSerializer* startup_serializer_;
- List<JSObject*> internal_field_holders_;
- v8::SerializeInternalFieldsCallback serialize_internal_fields_;
+ List<JSObject*> embedder_field_holders_;
+ v8::SerializeEmbedderFieldsCallback serialize_embedder_fields_;
DISALLOW_COPY_AND_ASSIGN(PartialSerializer);
};
« no previous file with comments | « src/snapshot/deserializer.cc ('k') | src/snapshot/partial-serializer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698