Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(583)

Unified Diff: third_party/WebKit/Source/core/page/ChromeClient.cpp

Issue 1437943002: Replace WTF::forward with std::forward. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed one use of WTF::forward Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/graphics/ContiguousContainer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/graphics/ContiguousContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698