| 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 "web/WebRemoteFrameImpl.h" | 5 #include "web/WebRemoteFrameImpl.h" |
| 6 | 6 |
| 7 #include "core/dom/Fullscreen.h" | 7 #include "core/dom/Fullscreen.h" |
| 8 #include "core/dom/RemoteSecurityContext.h" | 8 #include "core/dom/RemoteSecurityContext.h" |
| 9 #include "core/dom/SecurityContext.h" | 9 #include "core/dom/SecurityContext.h" |
| 10 #include "core/frame/FrameView.h" | 10 #include "core/frame/FrameView.h" |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 const WebSecurityOrigin&) { | 174 const WebSecurityOrigin&) { |
| 175 NOTREACHED(); | 175 NOTREACHED(); |
| 176 } | 176 } |
| 177 | 177 |
| 178 void WebRemoteFrameImpl::setIsolatedWorldContentSecurityPolicy( | 178 void WebRemoteFrameImpl::setIsolatedWorldContentSecurityPolicy( |
| 179 int worldID, | 179 int worldID, |
| 180 const WebString&) { | 180 const WebString&) { |
| 181 NOTREACHED(); | 181 NOTREACHED(); |
| 182 } | 182 } |
| 183 | 183 |
| 184 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&) { | |
| 185 NOTREACHED(); | |
| 186 } | |
| 187 | |
| 188 void WebRemoteFrameImpl::collectGarbage() { | 184 void WebRemoteFrameImpl::collectGarbage() { |
| 189 NOTREACHED(); | 185 NOTREACHED(); |
| 190 } | 186 } |
| 191 | 187 |
| 192 v8::Local<v8::Value> WebRemoteFrameImpl::executeScriptAndReturnValue( | 188 v8::Local<v8::Value> WebRemoteFrameImpl::executeScriptAndReturnValue( |
| 193 const WebScriptSource&) { | 189 const WebScriptSource&) { |
| 194 NOTREACHED(); | 190 NOTREACHED(); |
| 195 return v8::Local<v8::Value>(); | 191 return v8::Local<v8::Value>(); |
| 196 } | 192 } |
| 197 | 193 |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 } | 523 } |
| 528 | 524 |
| 529 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 525 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
| 530 WebRemoteFrameClient* client) | 526 WebRemoteFrameClient* client) |
| 531 : WebRemoteFrame(scope), | 527 : WebRemoteFrame(scope), |
| 532 m_frameClient(RemoteFrameClientImpl::create(this)), | 528 m_frameClient(RemoteFrameClientImpl::create(this)), |
| 533 m_client(client), | 529 m_client(client), |
| 534 m_selfKeepAlive(this) {} | 530 m_selfKeepAlive(this) {} |
| 535 | 531 |
| 536 } // namespace blink | 532 } // namespace blink |
| OLD | NEW |