summaryrefslogtreecommitdiff
path: root/chromium/v8/src/wasm/wasm-constants.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-02-13 16:23:34 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-02-14 10:37:21 +0000
commit38a9a29f4f9436cace7f0e7abf9c586057df8a4e (patch)
treec4e8c458dc595bc0ddb435708fa2229edfd00bd4 /chromium/v8/src/wasm/wasm-constants.h
parente684a3455bcc29a6e3e66a004e352dea4e1141e7 (diff)
downloadqtwebengine-chromium-38a9a29f4f9436cace7f0e7abf9c586057df8a4e.tar.gz
BASELINE: Update Chromium to 73.0.3683.37
Change-Id: I08c9af2948b645f671e5d933aca1f7a90ea372f2 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/v8/src/wasm/wasm-constants.h')
-rw-r--r--chromium/v8/src/wasm/wasm-constants.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/chromium/v8/src/wasm/wasm-constants.h b/chromium/v8/src/wasm/wasm-constants.h
index 49525d9143f..668b08eba93 100644
--- a/chromium/v8/src/wasm/wasm-constants.h
+++ b/chromium/v8/src/wasm/wasm-constants.h
@@ -71,14 +71,19 @@ enum SectionCode : int8_t {
kElementSectionCode = 9, // Elements section
kCodeSectionCode = 10, // Function code
kDataSectionCode = 11, // Data segments
- kNameSectionCode = 12, // Name section (encoded as a string)
- kExceptionSectionCode = 13, // Exception section
- kSourceMappingURLSectionCode = 14, // Source Map URL section
+ kExceptionSectionCode = 12, // Exception section
+ kDataCountSectionCode = 13, // Number of data segments
+
+ // The following sections are custom sections, and are identified using a
+ // string rather than an integer. Their enumeration values are not guaranteed
+ // to be consistent.
+ kNameSectionCode, // Name section (encoded as a string)
+ kSourceMappingURLSectionCode, // Source Map URL section
// Helper values
kFirstSectionInModule = kTypeSectionCode,
kLastKnownModuleSection = kSourceMappingURLSectionCode,
- kFirstUnorderedSection = kNameSectionCode,
+ kFirstUnorderedSection = kExceptionSectionCode,
};
// Binary encoding of name section kinds.