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

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

Issue 1602663003: Framelet Prototype 2016 using Mojo IPC Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Disabled oilpan Created 4 years, 10 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 232
233 bool navigateBackForward(int offset) const override { return false; } 233 bool navigateBackForward(int offset) const override { return false; }
234 void didDisplayInsecureContent() override {} 234 void didDisplayInsecureContent() override {}
235 void didRunInsecureContent(SecurityOrigin*, const KURL&) override {} 235 void didRunInsecureContent(SecurityOrigin*, const KURL&) override {}
236 void didDetectXSS(const KURL&, bool) override {} 236 void didDetectXSS(const KURL&, bool) override {}
237 void didDispatchPingLoader(const KURL&) override {} 237 void didDispatchPingLoader(const KURL&) override {}
238 void didDisplayContentWithCertificateErrors(const KURL&, const CString&, con st WebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override {} 238 void didDisplayContentWithCertificateErrors(const KURL&, const CString&, con st WebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override {}
239 void didRunContentWithCertificateErrors(const KURL&, const CString&, const W ebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override {} 239 void didRunContentWithCertificateErrors(const KURL&, const CString&, const W ebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override {}
240 void selectorMatchChanged(const Vector<String>&, const Vector<String>&) over ride {} 240 void selectorMatchChanged(const Vector<String>&, const Vector<String>&) over ride {}
241 PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRequest&, cons t AtomicString&, HTMLFrameOwnerElement*) override; 241 PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRequest&, cons t AtomicString&, HTMLFrameOwnerElement*) override;
242 WebFramelet* createFramelet(const KURL&, HTMLFrameletElement*) override;
242 PassRefPtrWillBeRawPtr<Widget> createPlugin(HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool, DetachedPlug inPolicy) override; 243 PassRefPtrWillBeRawPtr<Widget> createPlugin(HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool, DetachedPlug inPolicy) override;
243 bool canCreatePluginWithoutRenderer(const String& mimeType) const override { return false; } 244 bool canCreatePluginWithoutRenderer(const String& mimeType) const override { return false; }
244 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, WebMediaP layer::LoadType, const WebURL&, WebMediaPlayerClient*) override; 245 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, WebMediaP layer::LoadType, const WebURL&, WebMediaPlayerClient*) override;
245 PassOwnPtr<WebMediaSession> createWebMediaSession() override; 246 PassOwnPtr<WebMediaSession> createWebMediaSession() override;
246 247
247 ObjectContentType objectContentType(const KURL&, const String&, bool) overri de { return ObjectContentType(); } 248 ObjectContentType objectContentType(const KURL&, const String&, bool) overri de { return ObjectContentType(); }
248 249
249 void didCreateNewDocument() override {} 250 void didCreateNewDocument() override {}
250 void dispatchDidClearWindowObjectInMainWorld() override {} 251 void dispatchDidClearWindowObjectInMainWorld() override {}
251 void documentElementAvailable() override {} 252 void documentElementAvailable() override {}
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 ~EmptyDragClient() override {} 330 ~EmptyDragClient() override {}
330 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; } 331 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; }
331 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {} 332 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {}
332 }; 333 };
333 334
334 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 335 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
335 336
336 } // namespace blink 337 } // namespace blink
337 338
338 #endif // EmptyClients_h 339 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698