| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 WebString WebRemoteFrameImpl::AssignedName() const { | 84 WebString WebRemoteFrameImpl::AssignedName() const { |
| 85 NOTREACHED(); | 85 NOTREACHED(); |
| 86 return WebString(); | 86 return WebString(); |
| 87 } | 87 } |
| 88 | 88 |
| 89 void WebRemoteFrameImpl::SetName(const WebString&) { | 89 void WebRemoteFrameImpl::SetName(const WebString&) { |
| 90 NOTREACHED(); | 90 NOTREACHED(); |
| 91 } | 91 } |
| 92 | 92 |
| 93 WebSize WebRemoteFrameImpl::GetScrollOffset() const { | |
| 94 NOTREACHED(); | |
| 95 return WebSize(); | |
| 96 } | |
| 97 | |
| 98 void WebRemoteFrameImpl::SetScrollOffset(const WebSize&) { | |
| 99 NOTREACHED(); | |
| 100 } | |
| 101 | |
| 102 WebSize WebRemoteFrameImpl::ContentsSize() const { | 93 WebSize WebRemoteFrameImpl::ContentsSize() const { |
| 103 NOTREACHED(); | 94 NOTREACHED(); |
| 104 return WebSize(); | 95 return WebSize(); |
| 105 } | 96 } |
| 106 | 97 |
| 107 bool WebRemoteFrameImpl::HasVisibleContent() const { | 98 bool WebRemoteFrameImpl::HasVisibleContent() const { |
| 108 NOTREACHED(); | 99 NOTREACHED(); |
| 109 return false; | 100 return false; |
| 110 } | 101 } |
| 111 | 102 |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 } | 387 } |
| 397 | 388 |
| 398 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 389 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
| 399 WebRemoteFrameClient* client) | 390 WebRemoteFrameClient* client) |
| 400 : WebRemoteFrameBase(scope), | 391 : WebRemoteFrameBase(scope), |
| 401 frame_client_(RemoteFrameClientImpl::Create(this)), | 392 frame_client_(RemoteFrameClientImpl::Create(this)), |
| 402 client_(client), | 393 client_(client), |
| 403 self_keep_alive_(this) {} | 394 self_keep_alive_(this) {} |
| 404 | 395 |
| 405 } // namespace blink | 396 } // namespace blink |
| OLD | NEW |