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

Side by Side Diff: Source/core/html/HTMLMediaElement.cpp

Issue 27694002: Ability to block <audio> and <video> media. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Better rebase. Created 6 years, 6 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) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "core/html/HTMLSourceElement.h" 47 #include "core/html/HTMLSourceElement.h"
48 #include "core/html/HTMLTrackElement.h" 48 #include "core/html/HTMLTrackElement.h"
49 #include "core/html/MediaController.h" 49 #include "core/html/MediaController.h"
50 #include "core/html/MediaError.h" 50 #include "core/html/MediaError.h"
51 #include "core/html/MediaFragmentURIParser.h" 51 #include "core/html/MediaFragmentURIParser.h"
52 #include "core/html/TimeRanges.h" 52 #include "core/html/TimeRanges.h"
53 #include "core/html/shadow/MediaControls.h" 53 #include "core/html/shadow/MediaControls.h"
54 #include "core/html/track/InbandTextTrack.h" 54 #include "core/html/track/InbandTextTrack.h"
55 #include "core/html/track/TextTrackCueList.h" 55 #include "core/html/track/TextTrackCueList.h"
56 #include "core/html/track/TextTrackList.h" 56 #include "core/html/track/TextTrackList.h"
57 #include "core/loader/FrameLoader.h"
58 #include "core/rendering/RenderVideo.h" 57 #include "core/rendering/RenderVideo.h"
59 #include "core/rendering/RenderView.h" 58 #include "core/rendering/RenderView.h"
60 #include "core/rendering/compositing/RenderLayerCompositor.h" 59 #include "core/rendering/compositing/RenderLayerCompositor.h"
61 #include "platform/ContentType.h" 60 #include "platform/ContentType.h"
62 #include "platform/Language.h" 61 #include "platform/Language.h"
63 #include "platform/Logging.h" 62 #include "platform/Logging.h"
64 #include "platform/MIMETypeFromURL.h" 63 #include "platform/MIMETypeFromURL.h"
65 #include "platform/MIMETypeRegistry.h" 64 #include "platform/MIMETypeRegistry.h"
66 #include "platform/NotImplemented.h" 65 #include "platform/NotImplemented.h"
67 #include "platform/UserGestureIndicator.h" 66 #include "platform/UserGestureIndicator.h"
(...skipping 3586 matching lines...) Expand 10 before | Expand all | Expand 10 after
3654 visitor->trace(m_error); 3653 visitor->trace(m_error);
3655 visitor->trace(m_currentSourceNode); 3654 visitor->trace(m_currentSourceNode);
3656 visitor->trace(m_nextChildNodeToConsider); 3655 visitor->trace(m_nextChildNodeToConsider);
3657 visitor->trace(m_textTracks); 3656 visitor->trace(m_textTracks);
3658 visitor->trace(m_textTracksWhenResourceSelectionBegan); 3657 visitor->trace(m_textTracksWhenResourceSelectionBegan);
3659 WillBeHeapSupplementable<HTMLMediaElement>::trace(visitor); 3658 WillBeHeapSupplementable<HTMLMediaElement>::trace(visitor);
3660 HTMLElement::trace(visitor); 3659 HTMLElement::trace(visitor);
3661 } 3660 }
3662 3661
3663 } 3662 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698