| Index: third_party/WebKit/Source/platform/v8_inspector/V8Regex.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8Regex.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8Regex.cpp
|
| index d4678ab1721eafb403e5d943bda7e825135029b6..4382a75a0657a7e949b56356acb7f4dd4fe0e8f3 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8Regex.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8Regex.cpp
|
| @@ -59,7 +59,7 @@ int V8Regex::match(const String16& string, int startFrom, int* matchLength) cons
|
| return -1;
|
| v8::Local<v8::Value> argv[] = { toV8String(isolate, string.substring(startFrom)) };
|
| v8::Local<v8::Value> returnValue;
|
| - if (!exec.As<v8::Function>()->Call(context, regex, WTF_ARRAY_LENGTH(argv), argv).ToLocal(&returnValue))
|
| + if (!exec.As<v8::Function>()->Call(context, regex, PROTOCOL_ARRAY_LENGTH(argv), argv).ToLocal(&returnValue))
|
| return -1;
|
|
|
| // RegExp#exec returns null if there's no match, otherwise it returns an
|
|
|