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

Unified Diff: src/api-experimental.cc

Issue 2741683004: [rename] Rename internal field to embedder field. (Closed)
Patch Set: DEPRECATE_SOON(GetInternalField) 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
Index: src/api-experimental.cc
diff --git a/src/api-experimental.cc b/src/api-experimental.cc
index a9b5bd043b89977d2d87d47fe401ef43687776a9..f3bbfdf821d75d7aba66358f0682cafe4eb2b437 100644
--- a/src/api-experimental.cc
+++ b/src/api-experimental.cc
@@ -71,15 +71,14 @@ FastAccessorBuilder::ValueId FastAccessorBuilder::GetReceiver() {
return FromApi(this)->GetReceiver();
}
-
-FastAccessorBuilder::ValueId FastAccessorBuilder::LoadInternalField(
+FastAccessorBuilder::ValueId FastAccessorBuilder::LoadEmbedderField(
ValueId value, int field_no) {
- return FromApi(this)->LoadInternalField(value, field_no);
+ return FromApi(this)->LoadEmbedderField(value, field_no);
}
-FastAccessorBuilder::ValueId FastAccessorBuilder::LoadInternalFieldUnchecked(
+FastAccessorBuilder::ValueId FastAccessorBuilder::LoadEmbedderFieldUnchecked(
ValueId value, int field_no) {
- return FromApi(this)->LoadInternalFieldUnchecked(value, field_no);
+ return FromApi(this)->LoadEmbedderFieldUnchecked(value, field_no);
}
FastAccessorBuilder::ValueId FastAccessorBuilder::LoadValue(ValueId value_id,
« include/v8-experimental.h ('K') | « src/api.cc ('k') | src/api-natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698