Index: third_party/WebKit/Source/web/SuspendableScriptExecutor.cpp |
diff --git a/third_party/WebKit/Source/web/SuspendableScriptExecutor.cpp b/third_party/WebKit/Source/web/SuspendableScriptExecutor.cpp |
index e82bc7444530affda32e9db61b3824a6da4bb777..8ad4c63a4af4217aaef173a4b543156b53b8ecd5 100644 |
--- a/third_party/WebKit/Source/web/SuspendableScriptExecutor.cpp |
+++ b/third_party/WebKit/Source/web/SuspendableScriptExecutor.cpp |
@@ -4,6 +4,7 @@ |
#include "web/SuspendableScriptExecutor.h" |
+#include <memory> |
#include "bindings/core/v8/ScriptController.h" |
#include "bindings/core/v8/ScriptSourceCode.h" |
#include "bindings/core/v8/V8PersistentValueVector.h" |
@@ -17,7 +18,6 @@ |
#include "public/web/WebScriptExecutionCallback.h" |
#include "wtf/PtrUtil.h" |
#include "wtf/Vector.h" |
-#include <memory> |
namespace blink { |
@@ -46,9 +46,7 @@ WebScriptExecutor::WebScriptExecutor( |
const HeapVector<ScriptSourceCode>& sources, |
int worldID, |
bool userGesture) |
- : m_sources(sources), |
- m_worldID(worldID), |
- m_userGesture(userGesture) {} |
+ : m_sources(sources), m_worldID(worldID), m_userGesture(userGesture) {} |
Vector<v8::Local<v8::Value>> WebScriptExecutor::execute(LocalFrame* frame) { |
std::unique_ptr<UserGestureIndicator> indicator; |