Index: src/factory.h |
diff --git a/src/factory.h b/src/factory.h |
index 6321132f441f17564262d73b47ec49cc9852f407..fc145625e8c7dfd88765824cc0ba6f23e29f1f39 100644 |
--- a/src/factory.h |
+++ b/src/factory.h |
@@ -132,10 +132,10 @@ class Factory V8_FINAL { |
// Allocates and partially initializes an ASCII or TwoByte String. The |
// characters of the string are uninitialized. Currently used in regexp code |
// only, where they are pretenured. |
- Handle<SeqOneByteString> NewRawOneByteString( |
+ MaybeHandle<SeqOneByteString> NewRawOneByteString( |
int length, |
PretenureFlag pretenure = NOT_TENURED); |
- Handle<SeqTwoByteString> NewRawTwoByteString( |
+ MaybeHandle<SeqTwoByteString> NewRawTwoByteString( |
int length, |
PretenureFlag pretenure = NOT_TENURED); |