| Index: Source/WebCore/bindings/v8/V8DOMWindowShell.cpp
|
| ===================================================================
|
| --- Source/WebCore/bindings/v8/V8DOMWindowShell.cpp (revision 141118)
|
| +++ Source/WebCore/bindings/v8/V8DOMWindowShell.cpp (working copy)
|
| @@ -246,7 +246,7 @@
|
| if (m_frame->document()) {
|
| ContentSecurityPolicy* csp = m_frame->document()->contentSecurityPolicy();
|
| context->AllowCodeGenerationFromStrings(csp->allowEval(0, ContentSecurityPolicy::SuppressReport));
|
| - context->SetErrorMessageForCodeGenerationFromStrings(v8String(csp->evalDisabledErrorMessage(), m_isolate));
|
| + context->SetErrorMessageForCodeGenerationFromStrings(deprecatedV8String(csp->evalDisabledErrorMessage()));
|
| }
|
| } else {
|
| // Using the default security token means that the canAccess is always
|
| @@ -453,7 +453,7 @@
|
|
|
| ASSERT(!m_document.isEmpty());
|
| checkDocumentWrapper(m_document.get(), document);
|
| - m_document->SetAccessor(v8String(name, m_isolate), getter);
|
| + m_document->SetAccessor(deprecatedV8String(name), getter);
|
| }
|
|
|
| void V8DOMWindowShell::namedItemRemoved(HTMLDocument* document, const AtomicString& name)
|
| @@ -471,7 +471,7 @@
|
|
|
| ASSERT(!m_document.isEmpty());
|
| checkDocumentWrapper(m_document.get(), document);
|
| - m_document->Delete(v8String(name, m_isolate));
|
| + m_document->Delete(deprecatedV8String(name));
|
| }
|
|
|
| void V8DOMWindowShell::updateSecurityOrigin()
|
|
|