| Index: third_party/WebKit/Source/core/page/ChromeClient.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/ChromeClient.cpp b/third_party/WebKit/Source/core/page/ChromeClient.cpp
|
| index ac605312b7dd7d5df7401adf1fe9ecdd92d03755..e51860053437d05e7f71041ea69b9c57b527ffed 100644
|
| --- a/third_party/WebKit/Source/core/page/ChromeClient.cpp
|
| +++ b/third_party/WebKit/Source/core/page/ChromeClient.cpp
|
| @@ -33,8 +33,8 @@
|
| #include "platform/geometry/IntRect.h"
|
| #include "platform/network/NetworkHints.h"
|
| #include "public/platform/WebScreenInfo.h"
|
| -#include "wtf/Utility.h"
|
| #include <algorithm>
|
| +#include <utility>
|
|
|
| namespace blink {
|
|
|
| @@ -93,7 +93,7 @@ bool openJavaScriptDialog(
|
| ScopedPageLoadDeferrer deferrer;
|
|
|
| InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(&frame, message, dialogType);
|
| - bool result = (chromeClient->*function)(&frame, message, WTF::forward<Args>(args)...);
|
| + bool result = (chromeClient->*function)(&frame, message, std::forward<Args>(args)...);
|
| InspectorInstrumentation::didRunJavaScriptDialog(cookie, result);
|
| return result;
|
| }
|
|
|