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: Source/core/html/HTMLMediaElement.cpp

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "core/html/MediaFragmentURIParser.h" 50 #include "core/html/MediaFragmentURIParser.h"
51 #include "core/html/TimeRanges.h" 51 #include "core/html/TimeRanges.h"
52 #include "core/html/shadow/MediaControls.h" 52 #include "core/html/shadow/MediaControls.h"
53 #include "core/html/track/AudioTrack.h" 53 #include "core/html/track/AudioTrack.h"
54 #include "core/html/track/AudioTrackList.h" 54 #include "core/html/track/AudioTrackList.h"
55 #include "core/html/track/InbandTextTrack.h" 55 #include "core/html/track/InbandTextTrack.h"
56 #include "core/html/track/TextTrackCueList.h" 56 #include "core/html/track/TextTrackCueList.h"
57 #include "core/html/track/TextTrackList.h" 57 #include "core/html/track/TextTrackList.h"
58 #include "core/html/track/VideoTrack.h" 58 #include "core/html/track/VideoTrack.h"
59 #include "core/html/track/VideoTrackList.h" 59 #include "core/html/track/VideoTrackList.h"
60 #include "core/layout/compositing/RenderLayerCompositor.h" 60 #include "core/layout/compositing/LayerCompositor.h"
61 #include "core/loader/FrameLoader.h" 61 #include "core/loader/FrameLoader.h"
62 #include "core/rendering/RenderVideo.h" 62 #include "core/rendering/RenderVideo.h"
63 #include "core/rendering/RenderView.h" 63 #include "core/rendering/RenderView.h"
64 #include "platform/ContentType.h" 64 #include "platform/ContentType.h"
65 #include "platform/Language.h" 65 #include "platform/Language.h"
66 #include "platform/Logging.h" 66 #include "platform/Logging.h"
67 #include "platform/MIMETypeFromURL.h" 67 #include "platform/MIMETypeFromURL.h"
68 #include "platform/MIMETypeRegistry.h" 68 #include "platform/MIMETypeRegistry.h"
69 #include "platform/RuntimeEnabledFeatures.h" 69 #include "platform/RuntimeEnabledFeatures.h"
70 #include "platform/UserGestureIndicator.h" 70 #include "platform/UserGestureIndicator.h"
(...skipping 4040 matching lines...) Expand 10 before | Expand all | Expand 10 after
4111 4111
4112 #if ENABLE(WEB_AUDIO) 4112 #if ENABLE(WEB_AUDIO)
4113 void HTMLMediaElement::clearWeakMembers(Visitor* visitor) 4113 void HTMLMediaElement::clearWeakMembers(Visitor* visitor)
4114 { 4114 {
4115 if (!visitor->isAlive(m_audioSourceNode) && audioSourceProvider()) 4115 if (!visitor->isAlive(m_audioSourceNode) && audioSourceProvider())
4116 audioSourceProvider()->setClient(nullptr); 4116 audioSourceProvider()->setClient(nullptr);
4117 } 4117 }
4118 #endif 4118 #endif
4119 4119
4120 } 4120 }
OLDNEW
« no previous file with comments | « Source/core/html/HTMLFrameOwnerElement.cpp ('k') | Source/core/html/canvas/CanvasRenderingContext2D.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698