Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Side by Side Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp

Issue 1483733002: Remove support for NPObjects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "core/frame/FrameView.h" 7 #include "core/frame/FrameView.h"
8 #include "core/frame/Settings.h" 8 #include "core/frame/Settings.h"
9 #include "core/html/HTMLFrameOwnerElement.h" 9 #include "core/html/HTMLFrameOwnerElement.h"
10 #include "core/layout/LayoutObject.h" 10 #include "core/layout/LayoutObject.h"
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 { 191 {
192 ASSERT_NOT_REACHED(); 192 ASSERT_NOT_REACHED();
193 return false; 193 return false;
194 } 194 }
195 195
196 void WebRemoteFrameImpl::dispatchUnloadEvent() 196 void WebRemoteFrameImpl::dispatchUnloadEvent()
197 { 197 {
198 ASSERT_NOT_REACHED(); 198 ASSERT_NOT_REACHED();
199 } 199 }
200 200
201 NPObject* WebRemoteFrameImpl::windowObject() const
202 {
203 ASSERT_NOT_REACHED();
204 return nullptr;
205 }
206
207 void WebRemoteFrameImpl::bindToWindowObject(const WebString& name, NPObject*)
208 {
209 ASSERT_NOT_REACHED();
210 }
211
212 void WebRemoteFrameImpl::bindToWindowObject(const WebString& name, NPObject*, vo id*)
213 {
214 ASSERT_NOT_REACHED();
215 }
216
217 void WebRemoteFrameImpl::executeScript(const WebScriptSource&) 201 void WebRemoteFrameImpl::executeScript(const WebScriptSource&)
218 { 202 {
219 ASSERT_NOT_REACHED(); 203 ASSERT_NOT_REACHED();
220 } 204 }
221 205
222 void WebRemoteFrameImpl::executeScriptInIsolatedWorld( 206 void WebRemoteFrameImpl::executeScriptInIsolatedWorld(
223 int worldID, const WebScriptSource* sources, unsigned numSources, 207 int worldID, const WebScriptSource* sources, unsigned numSources,
224 int extensionGroup) 208 int extensionGroup)
225 { 209 {
226 ASSERT_NOT_REACHED(); 210 ASSERT_NOT_REACHED();
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 : WebRemoteFrame(scope) 712 : WebRemoteFrame(scope)
729 , m_frameClient(RemoteFrameClientImpl::create(this)) 713 , m_frameClient(RemoteFrameClientImpl::create(this))
730 , m_client(client) 714 , m_client(client)
731 #if ENABLE(OILPAN) 715 #if ENABLE(OILPAN)
732 , m_selfKeepAlive(this) 716 , m_selfKeepAlive(this)
733 #endif 717 #endif
734 { 718 {
735 } 719 }
736 720
737 } // namespace blink 721 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/Source/web/tests/FakeWebPlugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698