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

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

Issue 1815033003: Add srcObject attribute of type MediaStream to HTMLMediaElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: philipj's comments 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 /* 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 void didDisplayInsecureContent() override {} 238 void didDisplayInsecureContent() override {}
239 void didRunInsecureContent(SecurityOrigin*, const KURL&) override {} 239 void didRunInsecureContent(SecurityOrigin*, const KURL&) override {}
240 void didDetectXSS(const KURL&, bool) override {} 240 void didDetectXSS(const KURL&, bool) override {}
241 void didDispatchPingLoader(const KURL&) override {} 241 void didDispatchPingLoader(const KURL&) override {}
242 void didDisplayContentWithCertificateErrors(const KURL&, const CString&, con st WebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override {} 242 void didDisplayContentWithCertificateErrors(const KURL&, const CString&, con st WebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override {}
243 void didRunContentWithCertificateErrors(const KURL&, const CString&, const W ebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override {} 243 void didRunContentWithCertificateErrors(const KURL&, const CString&, const W ebURL& mainResourceUrl, const CString& mainResourceSecurityInfo) override {}
244 void selectorMatchChanged(const Vector<String>&, const Vector<String>&) over ride {} 244 void selectorMatchChanged(const Vector<String>&, const Vector<String>&) over ride {}
245 LocalFrame* createFrame(const FrameLoadRequest&, const AtomicString&, HTMLFr ameOwnerElement*) override; 245 LocalFrame* createFrame(const FrameLoadRequest&, const AtomicString&, HTMLFr ameOwnerElement*) override;
246 Widget* createPlugin(HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool, DetachedPluginPolicy) override; 246 Widget* createPlugin(HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool, DetachedPluginPolicy) override;
247 bool canCreatePluginWithoutRenderer(const String& mimeType) const override { return false; } 247 bool canCreatePluginWithoutRenderer(const String& mimeType) const override { return false; }
248 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, const Web URL&, WebMediaPlayerClient*) override; 248 PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, const Web MediaPlayerSource&, WebMediaPlayerClient*) override;
249 PassOwnPtr<WebMediaSession> createWebMediaSession() override; 249 PassOwnPtr<WebMediaSession> createWebMediaSession() override;
250 250
251 ObjectContentType getObjectContentType(const KURL&, const String&, bool) ove rride { return ObjectContentType(); } 251 ObjectContentType getObjectContentType(const KURL&, const String&, bool) ove rride { return ObjectContentType(); }
252 252
253 void didCreateNewDocument() override {} 253 void didCreateNewDocument() override {}
254 void dispatchDidClearWindowObjectInMainWorld() override {} 254 void dispatchDidClearWindowObjectInMainWorld() override {}
255 void documentElementAvailable() override {} 255 void documentElementAvailable() override {}
256 void runScriptsAtDocumentElementAvailable() override {} 256 void runScriptsAtDocumentElementAvailable() override {}
257 void runScriptsAtDocumentReady(bool) override {} 257 void runScriptsAtDocumentReady(bool) override {}
258 258
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 ~EmptyDragClient() override {} 335 ~EmptyDragClient() override {}
336 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; } 336 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; }
337 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {} 337 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {}
338 }; 338 };
339 339
340 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 340 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
341 341
342 } // namespace blink 342 } // namespace blink
343 343
344 #endif // EmptyClients_h 344 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698