| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 #include "web/WebRemoteFrameImpl.h" | 6 #include "web/WebRemoteFrameImpl.h" |
| 7 | 7 |
| 8 #include "core/frame/FrameOwner.h" | 8 #include "core/frame/FrameOwner.h" |
| 9 #include "core/frame/RemoteFrame.h" | 9 #include "core/frame/RemoteFrame.h" |
| 10 #include "core/frame/Settings.h" | 10 #include "core/frame/Settings.h" |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 void WebRemoteFrameImpl::setIsolatedWorldSecurityOrigin(int worldID, const WebSe
curityOrigin&) | 302 void WebRemoteFrameImpl::setIsolatedWorldSecurityOrigin(int worldID, const WebSe
curityOrigin&) |
| 303 { | 303 { |
| 304 ASSERT_NOT_REACHED(); | 304 ASSERT_NOT_REACHED(); |
| 305 } | 305 } |
| 306 | 306 |
| 307 void WebRemoteFrameImpl::setIsolatedWorldContentSecurityPolicy(int worldID, cons
t WebString&) | 307 void WebRemoteFrameImpl::setIsolatedWorldContentSecurityPolicy(int worldID, cons
t WebString&) |
| 308 { | 308 { |
| 309 ASSERT_NOT_REACHED(); | 309 ASSERT_NOT_REACHED(); |
| 310 } | 310 } |
| 311 | 311 |
| 312 void WebRemoteFrameImpl::setIsolatedWorldHumanReadableName(int worldID, const We
bString&) |
| 313 { |
| 314 ASSERT_NOT_REACHED(); |
| 315 } |
| 316 |
| 312 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&) | 317 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&) |
| 313 { | 318 { |
| 314 ASSERT_NOT_REACHED(); | 319 ASSERT_NOT_REACHED(); |
| 315 } | 320 } |
| 316 | 321 |
| 317 void WebRemoteFrameImpl::collectGarbage() | 322 void WebRemoteFrameImpl::collectGarbage() |
| 318 { | 323 { |
| 319 ASSERT_NOT_REACHED(); | 324 ASSERT_NOT_REACHED(); |
| 320 } | 325 } |
| 321 | 326 |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 | 834 |
| 830 WebRemoteFrameImpl* WebRemoteFrameImpl::fromFrame(RemoteFrame& frame) | 835 WebRemoteFrameImpl* WebRemoteFrameImpl::fromFrame(RemoteFrame& frame) |
| 831 { | 836 { |
| 832 if (!frame.client()) | 837 if (!frame.client()) |
| 833 return 0; | 838 return 0; |
| 834 return static_cast<RemoteFrameClient*>(frame.client())->webFrame(); | 839 return static_cast<RemoteFrameClient*>(frame.client())->webFrame(); |
| 835 } | 840 } |
| 836 | 841 |
| 837 } // namespace blink | 842 } // namespace blink |
| 838 | 843 |
| OLD | NEW |