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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 | 140 |
141 WebPerformance WebRemoteFrameImpl::Performance() const { | 141 WebPerformance WebRemoteFrameImpl::Performance() const { |
142 NOTREACHED(); | 142 NOTREACHED(); |
143 return WebPerformance(); | 143 return WebPerformance(); |
144 } | 144 } |
145 | 145 |
146 void WebRemoteFrameImpl::DispatchUnloadEvent() { | 146 void WebRemoteFrameImpl::DispatchUnloadEvent() { |
147 NOTREACHED(); | 147 NOTREACHED(); |
148 } | 148 } |
149 | 149 |
150 void WebRemoteFrameImpl::ExecuteScript(const WebScriptSource&) { | |
151 NOTREACHED(); | |
152 } | |
153 | |
154 void WebRemoteFrameImpl::ExecuteScriptInIsolatedWorld( | 150 void WebRemoteFrameImpl::ExecuteScriptInIsolatedWorld( |
155 int world_id, | 151 int world_id, |
156 const WebScriptSource* sources, | 152 const WebScriptSource* sources, |
157 unsigned num_sources) { | 153 unsigned num_sources) { |
158 NOTREACHED(); | 154 NOTREACHED(); |
159 } | 155 } |
160 | 156 |
161 void WebRemoteFrameImpl::SetIsolatedWorldSecurityOrigin( | 157 void WebRemoteFrameImpl::SetIsolatedWorldSecurityOrigin( |
162 int world_id, | 158 int world_id, |
163 const WebSecurityOrigin&) { | 159 const WebSecurityOrigin&) { |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 } | 511 } |
516 | 512 |
517 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 513 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
518 WebRemoteFrameClient* client) | 514 WebRemoteFrameClient* client) |
519 : WebRemoteFrameBase(scope), | 515 : WebRemoteFrameBase(scope), |
520 frame_client_(RemoteFrameClientImpl::Create(this)), | 516 frame_client_(RemoteFrameClientImpl::Create(this)), |
521 client_(client), | 517 client_(client), |
522 self_keep_alive_(this) {} | 518 self_keep_alive_(this) {} |
523 | 519 |
524 } // namespace blink | 520 } // namespace blink |
OLD | NEW |