| 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 "core/exported/WebRemoteFrameImpl.h" | 5 #include "core/exported/WebRemoteFrameImpl.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/WindowProxy.h" | 7 #include "bindings/core/v8/WindowProxy.h" |
| 8 #include "core/dom/Fullscreen.h" | 8 #include "core/dom/Fullscreen.h" |
| 9 #include "core/dom/RemoteSecurityContext.h" | 9 #include "core/dom/RemoteSecurityContext.h" |
| 10 #include "core/dom/SecurityContext.h" | 10 #include "core/dom/SecurityContext.h" |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 186 |
| 187 v8::Local<v8::Value> WebRemoteFrameImpl::CallFunctionEvenIfScriptDisabled( | 187 v8::Local<v8::Value> WebRemoteFrameImpl::CallFunctionEvenIfScriptDisabled( |
| 188 v8::Local<v8::Function>, | 188 v8::Local<v8::Function>, |
| 189 v8::Local<v8::Value>, | 189 v8::Local<v8::Value>, |
| 190 int argc, | 190 int argc, |
| 191 v8::Local<v8::Value> argv[]) { | 191 v8::Local<v8::Value> argv[]) { |
| 192 NOTREACHED(); | 192 NOTREACHED(); |
| 193 return v8::Local<v8::Value>(); | 193 return v8::Local<v8::Value>(); |
| 194 } | 194 } |
| 195 | 195 |
| 196 v8::Local<v8::Context> WebRemoteFrameImpl::MainWorldScriptContext() const { | |
| 197 NOTREACHED(); | |
| 198 return v8::Local<v8::Context>(); | |
| 199 } | |
| 200 | |
| 201 void WebRemoteFrameImpl::Reload(WebFrameLoadType) { | 196 void WebRemoteFrameImpl::Reload(WebFrameLoadType) { |
| 202 NOTREACHED(); | 197 NOTREACHED(); |
| 203 } | 198 } |
| 204 | 199 |
| 205 void WebRemoteFrameImpl::ReloadWithOverrideURL(const WebURL& override_url, | 200 void WebRemoteFrameImpl::ReloadWithOverrideURL(const WebURL& override_url, |
| 206 WebFrameLoadType) { | 201 WebFrameLoadType) { |
| 207 NOTREACHED(); | 202 NOTREACHED(); |
| 208 } | 203 } |
| 209 | 204 |
| 210 void WebRemoteFrameImpl::LoadRequest(const WebURLRequest&) { | 205 void WebRemoteFrameImpl::LoadRequest(const WebURLRequest&) { |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 } | 480 } |
| 486 | 481 |
| 487 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 482 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
| 488 WebRemoteFrameClient* client) | 483 WebRemoteFrameClient* client) |
| 489 : WebRemoteFrameBase(scope), | 484 : WebRemoteFrameBase(scope), |
| 490 frame_client_(RemoteFrameClientImpl::Create(this)), | 485 frame_client_(RemoteFrameClientImpl::Create(this)), |
| 491 client_(client), | 486 client_(client), |
| 492 self_keep_alive_(this) {} | 487 self_keep_alive_(this) {} |
| 493 | 488 |
| 494 } // namespace blink | 489 } // namespace blink |
| OLD | NEW |