Index: src/factory.h |
diff --git a/src/factory.h b/src/factory.h |
index fc7870496e3ef2fcf590b39a80b78bbeb4cbde53..0a58341470bfc0fcf332e34ea71ebcff836ec9ef 100644 |
--- a/src/factory.h |
+++ b/src/factory.h |
@@ -28,8 +28,9 @@ class Factory final { |
byte kind); |
// Allocates a fixed array initialized with undefined values. |
- V8_EXPORT_PRIVATE Handle<FixedArray> NewFixedArray( |
- int size, PretenureFlag pretenure = NOT_TENURED); |
+ Handle<FixedArray> NewFixedArray( |
+ int size, |
+ PretenureFlag pretenure = NOT_TENURED); |
// Allocate a new fixed array with non-existing entries (the hole). |
Handle<FixedArray> NewFixedArrayWithHoles( |
@@ -164,8 +165,9 @@ class Factory final { |
// UTF8 strings are pretenured when used for regexp literal patterns and |
// flags in the parser. |
- MUST_USE_RESULT V8_EXPORT_PRIVATE MaybeHandle<String> NewStringFromUtf8( |
- Vector<const char> str, PretenureFlag pretenure = NOT_TENURED); |
+ MUST_USE_RESULT MaybeHandle<String> NewStringFromUtf8( |
+ Vector<const char> str, |
+ PretenureFlag pretenure = NOT_TENURED); |
MUST_USE_RESULT MaybeHandle<String> NewStringFromTwoByte( |
Vector<const uc16> str, |
@@ -455,11 +457,11 @@ class Factory final { |
} |
// Create a JSArray with the given elements. |
- V8_EXPORT_PRIVATE Handle<JSArray> NewJSArrayWithElements( |
- Handle<FixedArrayBase> elements, ElementsKind elements_kind, int length, |
- PretenureFlag pretenure = NOT_TENURED); |
+ Handle<JSArray> NewJSArrayWithElements(Handle<FixedArrayBase> elements, |
+ ElementsKind elements_kind, int length, |
+ PretenureFlag pretenure = NOT_TENURED); |
- V8_EXPORT_PRIVATE Handle<JSArray> NewJSArrayWithElements( |
+ Handle<JSArray> NewJSArrayWithElements( |
Handle<FixedArrayBase> elements, |
ElementsKind elements_kind = TERMINAL_FAST_ELEMENTS_KIND, |
PretenureFlag pretenure = NOT_TENURED) { |