| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 148 |
| 149 void WebRemoteFrameImpl::EnableViewSourceMode(bool enable) { | 149 void WebRemoteFrameImpl::EnableViewSourceMode(bool enable) { |
| 150 NOTREACHED(); | 150 NOTREACHED(); |
| 151 } | 151 } |
| 152 | 152 |
| 153 bool WebRemoteFrameImpl::IsViewSourceModeEnabled() const { | 153 bool WebRemoteFrameImpl::IsViewSourceModeEnabled() const { |
| 154 NOTREACHED(); | 154 NOTREACHED(); |
| 155 return false; | 155 return false; |
| 156 } | 156 } |
| 157 | 157 |
| 158 void WebRemoteFrameImpl::SetReferrerForRequest(WebURLRequest&, | |
| 159 const WebURL& referrer) { | |
| 160 NOTREACHED(); | |
| 161 } | |
| 162 | |
| 163 WebAssociatedURLLoader* WebRemoteFrameImpl::CreateAssociatedURLLoader( | 158 WebAssociatedURLLoader* WebRemoteFrameImpl::CreateAssociatedURLLoader( |
| 164 const WebAssociatedURLLoaderOptions&) { | 159 const WebAssociatedURLLoaderOptions&) { |
| 165 NOTREACHED(); | 160 NOTREACHED(); |
| 166 return nullptr; | 161 return nullptr; |
| 167 } | 162 } |
| 168 | 163 |
| 169 unsigned WebRemoteFrameImpl::UnloadListenerCount() const { | 164 unsigned WebRemoteFrameImpl::UnloadListenerCount() const { |
| 170 NOTREACHED(); | 165 NOTREACHED(); |
| 171 return 0; | 166 return 0; |
| 172 } | 167 } |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 376 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
| 382 WebRemoteFrameClient* client) | 377 WebRemoteFrameClient* client) |
| 383 : WebRemoteFrameBase(scope), | 378 : WebRemoteFrameBase(scope), |
| 384 frame_client_(RemoteFrameClientImpl::Create(this)), | 379 frame_client_(RemoteFrameClientImpl::Create(this)), |
| 385 client_(client), | 380 client_(client), |
| 386 self_keep_alive_(this) { | 381 self_keep_alive_(this) { |
| 387 DCHECK(client); | 382 DCHECK(client); |
| 388 } | 383 } |
| 389 | 384 |
| 390 } // namespace blink | 385 } // namespace blink |
| OLD | NEW |