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

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

Issue 48273013: Move MediaPlayer, IntSizeHash to platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adapt patch to already moved ContentDecryption files Created 7 years, 1 month 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
« no previous file with comments | « Source/core/frame/DOMWindow.cpp ('k') | Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 14 matching lines...) Expand all
25 25
26 #ifndef HTMLMediaElement_h 26 #ifndef HTMLMediaElement_h
27 #define HTMLMediaElement_h 27 #define HTMLMediaElement_h
28 28
29 #include "core/dom/ActiveDOMObject.h" 29 #include "core/dom/ActiveDOMObject.h"
30 #include "core/events/GenericEventQueue.h" 30 #include "core/events/GenericEventQueue.h"
31 #include "core/html/HTMLElement.h" 31 #include "core/html/HTMLElement.h"
32 #include "core/html/MediaControllerInterface.h" 32 #include "core/html/MediaControllerInterface.h"
33 #include "core/html/track/TextTrack.h" 33 #include "core/html/track/TextTrack.h"
34 #include "core/html/track/TextTrackCue.h" 34 #include "core/html/track/TextTrackCue.h"
35 #include "core/platform/graphics/MediaPlayer.h"
36 #include "platform/PODIntervalTree.h" 35 #include "platform/PODIntervalTree.h"
36 #include "platform/graphics/media/MediaPlayer.h"
37 #include "public/platform/WebMimeRegistry.h" 37 #include "public/platform/WebMimeRegistry.h"
38 38
39 namespace WebKit { class WebLayer; } 39 namespace WebKit { class WebLayer; }
40 40
41 namespace WebCore { 41 namespace WebCore {
42 42
43 #if ENABLE(WEB_AUDIO) 43 #if ENABLE(WEB_AUDIO)
44 class AudioSourceProvider; 44 class AudioSourceProvider;
45 class MediaElementAudioSourceNode; 45 class MediaElementAudioSourceNode;
46 #endif 46 #endif
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 inline bool isHTMLMediaElement(const Node& node) 596 inline bool isHTMLMediaElement(const Node& node)
597 { 597 {
598 return node.isElementNode() && toElement(node).isMediaElement(); 598 return node.isElementNode() && toElement(node).isMediaElement();
599 } 599 }
600 600
601 DEFINE_NODE_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement); 601 DEFINE_NODE_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement);
602 602
603 } //namespace 603 } //namespace
604 604
605 #endif 605 #endif
OLDNEW
« no previous file with comments | « Source/core/frame/DOMWindow.cpp ('k') | Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698