| Index: third_party/WebKit/Source/core/testing/DictionaryTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/testing/DictionaryTest.cpp b/third_party/WebKit/Source/core/testing/DictionaryTest.cpp
|
| index 353559639b5d1f2323daa0e0e85124e208cc9ce7..07dea6b738fca23238a6c950563b1d1d11ea185b 100644
|
| --- a/third_party/WebKit/Source/core/testing/DictionaryTest.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/DictionaryTest.cpp
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "core/testing/DictionaryTest.h"
|
|
|
| +#include "bindings/core/v8/ScriptState.h"
|
| #include "bindings/core/v8/V8ObjectBuilder.h"
|
| #include "core/testing/InternalDictionary.h"
|
| #include "core/testing/InternalDictionaryDerived.h"
|
| @@ -165,10 +166,11 @@ void DictionaryTest::getDerivedDerived(
|
| }
|
|
|
| String DictionaryTest::stringFromIterable(
|
| - ExecutionContext* executionContext,
|
| + ScriptState* scriptState,
|
| Dictionary iterable,
|
| ExceptionState& exceptionState) const {
|
| StringBuilder result;
|
| + ExecutionContext* executionContext = scriptState->getExecutionContext();
|
| DictionaryIterator iterator = iterable.getIterator(executionContext);
|
| if (iterator.isNull())
|
| return emptyString();
|
|
|