| Index: src/wasm/wasm-objects.h
|
| diff --git a/src/wasm/wasm-objects.h b/src/wasm/wasm-objects.h
|
| index 43c5da8544686c3ed91488cd2a42d62650894da3..392c6d293bcc734b2890c98937ff98d9013ed245 100644
|
| --- a/src/wasm/wasm-objects.h
|
| +++ b/src/wasm/wasm-objects.h
|
| @@ -45,7 +45,7 @@ class WasmInstanceWrapper;
|
| class WasmModuleObject : public JSObject {
|
| public:
|
| // If a second field is added, we need a kWrapperTracerHeader field as well.
|
| - // TODO(titzer): add the brand as an internal field instead of a property.
|
| + // TODO(titzer): add the brand as an embedder field instead of a property.
|
| enum Fields { kCompiledModule, kFieldCount };
|
|
|
| DECLARE_CASTS(WasmModuleObject);
|
| @@ -60,7 +60,7 @@ class WasmModuleObject : public JSObject {
|
| class WasmTableObject : public JSObject {
|
| public:
|
| // The 0-th field is used by the Blink Wrapper Tracer.
|
| - // TODO(titzer): add the brand as an internal field instead of a property.
|
| + // TODO(titzer): add the brand as an embedder field instead of a property.
|
| enum Fields {
|
| kWrapperTracerHeader,
|
| kFunctions,
|
| @@ -92,7 +92,7 @@ class WasmTableObject : public JSObject {
|
| class WasmMemoryObject : public JSObject {
|
| public:
|
| // The 0-th field is used by the Blink Wrapper Tracer.
|
| - // TODO(titzer): add the brand as an internal field instead of a property.
|
| + // TODO(titzer): add the brand as an embedder field instead of a property.
|
| enum Fields : uint8_t {
|
| kWrapperTracerHeader,
|
| kArrayBuffer,
|
| @@ -123,7 +123,7 @@ class WasmMemoryObject : public JSObject {
|
| class WasmInstanceObject : public JSObject {
|
| public:
|
| // The 0-th field is used by the Blink Wrapper Tracer.
|
| - // TODO(titzer): add the brand as an internal field instead of a property.
|
| + // TODO(titzer): add the brand as an embedder field instead of a property.
|
| enum Fields {
|
| kWrapperTracerHeader,
|
| kCompiledModule,
|
|
|