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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 | 80 |
81 WebString WebRemoteFrameImpl::AssignedName() const { | 81 WebString WebRemoteFrameImpl::AssignedName() const { |
82 NOTREACHED(); | 82 NOTREACHED(); |
83 return WebString(); | 83 return WebString(); |
84 } | 84 } |
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 { | |
91 NOTREACHED(); | |
92 return WebVector<WebIconURL>(); | |
93 } | |
94 | |
95 WebSize WebRemoteFrameImpl::GetScrollOffset() const { | 90 WebSize WebRemoteFrameImpl::GetScrollOffset() const { |
96 NOTREACHED(); | 91 NOTREACHED(); |
97 return WebSize(); | 92 return WebSize(); |
98 } | 93 } |
99 | 94 |
100 void WebRemoteFrameImpl::SetScrollOffset(const WebSize&) { | 95 void WebRemoteFrameImpl::SetScrollOffset(const WebSize&) { |
101 NOTREACHED(); | 96 NOTREACHED(); |
102 } | 97 } |
103 | 98 |
104 WebSize WebRemoteFrameImpl::ContentsSize() const { | 99 WebSize WebRemoteFrameImpl::ContentsSize() const { |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
489 } | 484 } |
490 | 485 |
491 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 486 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
492 WebRemoteFrameClient* client) | 487 WebRemoteFrameClient* client) |
493 : WebRemoteFrameBase(scope), | 488 : WebRemoteFrameBase(scope), |
494 frame_client_(RemoteFrameClientImpl::Create(this)), | 489 frame_client_(RemoteFrameClientImpl::Create(this)), |
495 client_(client), | 490 client_(client), |
496 self_keep_alive_(this) {} | 491 self_keep_alive_(this) {} |
497 | 492 |
498 } // namespace blink | 493 } // namespace blink |
OLD | NEW |