| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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::SetSharedWorkerRepositoryClient( | 95 void WebRemoteFrameImpl::SetSharedWorkerRepositoryClient( |
| 96 WebSharedWorkerRepositoryClient*) { | 96 WebSharedWorkerRepositoryClient*) { |
| 97 NOTREACHED(); | 97 NOTREACHED(); |
| 98 } | 98 } |
| 99 | 99 |
| 100 void WebRemoteFrameImpl::SetCanHaveScrollbars(bool) { | |
| 101 NOTREACHED(); | |
| 102 } | |
| 103 | |
| 104 WebSize WebRemoteFrameImpl::GetScrollOffset() const { | 100 WebSize WebRemoteFrameImpl::GetScrollOffset() const { |
| 105 NOTREACHED(); | 101 NOTREACHED(); |
| 106 return WebSize(); | 102 return WebSize(); |
| 107 } | 103 } |
| 108 | 104 |
| 109 void WebRemoteFrameImpl::SetScrollOffset(const WebSize&) { | 105 void WebRemoteFrameImpl::SetScrollOffset(const WebSize&) { |
| 110 NOTREACHED(); | 106 NOTREACHED(); |
| 111 } | 107 } |
| 112 | 108 |
| 113 WebSize WebRemoteFrameImpl::ContentsSize() const { | 109 WebSize WebRemoteFrameImpl::ContentsSize() const { |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 } | 520 } |
| 525 | 521 |
| 526 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 522 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
| 527 WebRemoteFrameClient* client) | 523 WebRemoteFrameClient* client) |
| 528 : WebRemoteFrameBase(scope), | 524 : WebRemoteFrameBase(scope), |
| 529 frame_client_(RemoteFrameClientImpl::Create(this)), | 525 frame_client_(RemoteFrameClientImpl::Create(this)), |
| 530 client_(client), | 526 client_(client), |
| 531 self_keep_alive_(this) {} | 527 self_keep_alive_(this) {} |
| 532 | 528 |
| 533 } // namespace blink | 529 } // namespace blink |
| OLD | NEW |