| Index: Source/WebKit/chromium/src/WebFrameImpl.cpp
|
| diff --git a/Source/WebKit/chromium/src/WebFrameImpl.cpp b/Source/WebKit/chromium/src/WebFrameImpl.cpp
|
| index f782165a96ed8739caa56cceb63d11afa530737b..a1a378a831cc7a56f81b473226c29dbd033d8ab8 100644
|
| --- a/Source/WebKit/chromium/src/WebFrameImpl.cpp
|
| +++ b/Source/WebKit/chromium/src/WebFrameImpl.cpp
|
| @@ -814,6 +814,12 @@ void WebFrameImpl::setIsolatedWorldSecurityOrigin(int worldID, const WebSecurity
|
| DOMWrapperWorld::setIsolatedWorldSecurityOrigin(worldID, securityOrigin.get());
|
| }
|
|
|
| +void WebFrameImpl::setIsolatedWorldHumanReadableName(int worldID, const WebString& humanReadableName)
|
| +{
|
| + ASSERT(frame());
|
| + DOMWrapperWorld::setIsolatedWorldHumanReadableName(worldID, humanReadableName);
|
| +}
|
| +
|
| void WebFrameImpl::setIsolatedWorldContentSecurityPolicy(int worldID, const WebString& policy)
|
| {
|
| ASSERT(frame());
|
|
|