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

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

Issue 14358027: Absolutify paths to platform/animation, platform/audio, platform/audio/chromium. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSToStyleMap.cpp ('k') | Source/core/page/animation/AnimationBase.h » ('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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 91
92 #include "CaptionUserPreferences.h" 92 #include "CaptionUserPreferences.h"
93 #include "HTMLTrackElement.h" 93 #include "HTMLTrackElement.h"
94 #include "InbandTextTrack.h" 94 #include "InbandTextTrack.h"
95 #include "RuntimeEnabledFeatures.h" 95 #include "RuntimeEnabledFeatures.h"
96 #include "TextTrackCueList.h" 96 #include "TextTrackCueList.h"
97 #include "TextTrackList.h" 97 #include "TextTrackList.h"
98 #include "core/platform/graphics/InbandTextTrackPrivate.h" 98 #include "core/platform/graphics/InbandTextTrackPrivate.h"
99 99
100 #if ENABLE(WEB_AUDIO) 100 #if ENABLE(WEB_AUDIO)
101 #include "AudioSourceProvider.h"
102 #include "MediaElementAudioSourceNode.h" 101 #include "MediaElementAudioSourceNode.h"
102 #include "core/platform/audio/AudioSourceProvider.h"
103 #endif 103 #endif
104 104
105 #if ENABLE(MEDIA_STREAM) 105 #if ENABLE(MEDIA_STREAM)
106 #include "MediaStreamRegistry.h" 106 #include "MediaStreamRegistry.h"
107 #endif 107 #endif
108 108
109 #if ENABLE(ENCRYPTED_MEDIA_V2) 109 #if ENABLE(ENCRYPTED_MEDIA_V2)
110 #include "MediaKeyNeededEvent.h" 110 #include "MediaKeyNeededEvent.h"
111 #include "MediaKeys.h" 111 #include "MediaKeys.h"
112 #endif 112 #endif
(...skipping 4337 matching lines...) Expand 10 before | Expand all | Expand 10 after
4450 info.addMember(m_mediaGroup, "mediaGroup"); 4450 info.addMember(m_mediaGroup, "mediaGroup");
4451 info.addMember(m_mediaController, "mediaController"); 4451 info.addMember(m_mediaController, "mediaController");
4452 4452
4453 #if ENABLE(WEB_AUDIO) 4453 #if ENABLE(WEB_AUDIO)
4454 info.addMember(m_audioSourceNode, "audioSourceNode"); 4454 info.addMember(m_audioSourceNode, "audioSourceNode");
4455 #endif 4455 #endif
4456 4456
4457 } 4457 }
4458 4458
4459 } 4459 }
OLDNEW
« no previous file with comments | « Source/core/css/CSSToStyleMap.cpp ('k') | Source/core/page/animation/AnimationBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698