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

Side by Side Diff: third_party/WebKit/Source/core/loader/EmptyClients.h

Issue 1642283002: Deal with frame removal by content scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Last nits Created 4 years, 9 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 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 PassRefPtrWillBeRawPtr<Widget> createPlugin(HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool, DetachedPlug inPolicy) override; 248 PassRefPtrWillBeRawPtr<Widget> createPlugin(HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool, DetachedPlug inPolicy) override;
249 bool canCreatePluginWithoutRenderer(const String& mimeType) const override { return false; } 249 bool canCreatePluginWithoutRenderer(const String& mimeType) const override { return false; }
250 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, WebMediaP layer::LoadType, const WebURL&, WebMediaPlayerClient*) override; 250 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, WebMediaP layer::LoadType, const WebURL&, WebMediaPlayerClient*) override;
251 PassOwnPtr<WebMediaSession> createWebMediaSession() override; 251 PassOwnPtr<WebMediaSession> createWebMediaSession() override;
252 252
253 ObjectContentType getObjectContentType(const KURL&, const String&, bool) ove rride { return ObjectContentType(); } 253 ObjectContentType getObjectContentType(const KURL&, const String&, bool) ove rride { return ObjectContentType(); }
254 254
255 void didCreateNewDocument() override {} 255 void didCreateNewDocument() override {}
256 void dispatchDidClearWindowObjectInMainWorld() override {} 256 void dispatchDidClearWindowObjectInMainWorld() override {}
257 void documentElementAvailable() override {} 257 void documentElementAvailable() override {}
258 void runScriptsAtDocumentElementAvailable() override {}
259 void runScriptsAtDocumentReady() override {}
258 260
259 void didCreateScriptContext(v8::Local<v8::Context>, int extensionGroup, int worldId) override {} 261 void didCreateScriptContext(v8::Local<v8::Context>, int extensionGroup, int worldId) override {}
260 void willReleaseScriptContext(v8::Local<v8::Context>, int worldId) override {} 262 void willReleaseScriptContext(v8::Local<v8::Context>, int worldId) override {}
261 bool allowScriptExtension(const String& extensionName, int extensionGroup, i nt worldId) override { return false; } 263 bool allowScriptExtension(const String& extensionName, int extensionGroup, i nt worldId) override { return false; }
262 264
263 v8::Local<v8::Value> createTestInterface(const AtomicString& name) override; 265 v8::Local<v8::Value> createTestInterface(const AtomicString& name) override;
264 266
265 WebCookieJar* cookieJar() const override { return 0; } 267 WebCookieJar* cookieJar() const override { return 0; }
266 268
267 void didRequestAutocomplete(HTMLFormElement*) override; 269 void didRequestAutocomplete(HTMLFormElement*) override;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 ~EmptyDragClient() override {} 337 ~EmptyDragClient() override {}
336 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; } 338 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; }
337 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {} 339 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {}
338 }; 340 };
339 341
340 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 342 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
341 343
342 } // namespace blink 344 } // namespace blink
343 345
344 #endif // EmptyClients_h 346 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/DocumentLoader.cpp ('k') | third_party/WebKit/Source/core/loader/FrameLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698