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

Side by Side Diff: third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp

Issue 1870963002: Clean up CompositorPendingAnimations inclusion. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "modules/remoteplayback/HTMLMediaElementRemotePlayback.h" 5 #include "modules/remoteplayback/HTMLMediaElementRemotePlayback.h"
6 6
7 #include "core/dom/DOMException.h"
7 #include "core/dom/Document.h" 8 #include "core/dom/Document.h"
8 #include "core/dom/QualifiedName.h" 9 #include "core/dom/QualifiedName.h"
9 #include "core/html/HTMLMediaElement.h" 10 #include "core/html/HTMLMediaElement.h"
10 #include "modules/remoteplayback/RemotePlayback.h" 11 #include "modules/remoteplayback/RemotePlayback.h"
11 12
12 namespace blink { 13 namespace blink {
13 14
14 // static 15 // static
15 bool HTMLMediaElementRemotePlayback::fastHasAttribute(const QualifiedName& name, const HTMLMediaElement& element) 16 bool HTMLMediaElementRemotePlayback::fastHasAttribute(const QualifiedName& name, const HTMLMediaElement& element)
16 { 17 {
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 return "HTMLMediaElementRemotePlayback"; 57 return "HTMLMediaElementRemotePlayback";
57 } 58 }
58 59
59 DEFINE_TRACE(HTMLMediaElementRemotePlayback) 60 DEFINE_TRACE(HTMLMediaElementRemotePlayback)
60 { 61 {
61 visitor->trace(m_remote); 62 visitor->trace(m_remote);
62 Supplement<HTMLMediaElement>::trace(visitor); 63 Supplement<HTMLMediaElement>::trace(visitor);
63 } 64 }
64 65
65 } // namespace blink 66 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698