| 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 "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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 void WebRemoteFrameImpl::SetName(const WebString&) { | 86 void WebRemoteFrameImpl::SetName(const WebString&) { |
| 87 NOTREACHED(); | 87 NOTREACHED(); |
| 88 } | 88 } |
| 89 | 89 |
| 90 WebVector<WebIconURL> WebRemoteFrameImpl::IconURLs(int icon_types_mask) const { | 90 WebVector<WebIconURL> WebRemoteFrameImpl::IconURLs(int icon_types_mask) const { |
| 91 NOTREACHED(); | 91 NOTREACHED(); |
| 92 return WebVector<WebIconURL>(); | 92 return WebVector<WebIconURL>(); |
| 93 } | 93 } |
| 94 | 94 |
| 95 void WebRemoteFrameImpl::SetCanHaveScrollbars(bool) { | |
| 96 NOTREACHED(); | |
| 97 } | |
| 98 | |
| 99 WebSize WebRemoteFrameImpl::GetScrollOffset() const { | 95 WebSize WebRemoteFrameImpl::GetScrollOffset() const { |
| 100 NOTREACHED(); | 96 NOTREACHED(); |
| 101 return WebSize(); | 97 return WebSize(); |
| 102 } | 98 } |
| 103 | 99 |
| 104 void WebRemoteFrameImpl::SetScrollOffset(const WebSize&) { | 100 void WebRemoteFrameImpl::SetScrollOffset(const WebSize&) { |
| 105 NOTREACHED(); | 101 NOTREACHED(); |
| 106 } | 102 } |
| 107 | 103 |
| 108 WebSize WebRemoteFrameImpl::ContentsSize() const { | 104 WebSize WebRemoteFrameImpl::ContentsSize() const { |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 } | 515 } |
| 520 | 516 |
| 521 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 517 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
| 522 WebRemoteFrameClient* client) | 518 WebRemoteFrameClient* client) |
| 523 : WebRemoteFrameBase(scope), | 519 : WebRemoteFrameBase(scope), |
| 524 frame_client_(RemoteFrameClientImpl::Create(this)), | 520 frame_client_(RemoteFrameClientImpl::Create(this)), |
| 525 client_(client), | 521 client_(client), |
| 526 self_keep_alive_(this) {} | 522 self_keep_alive_(this) {} |
| 527 | 523 |
| 528 } // namespace blink | 524 } // namespace blink |
| OLD | NEW |