| Index: third_party/WebKit/Source/core/html/shadow/MediaControlsMediaEventListener.h
|
| diff --git a/third_party/WebKit/Source/core/html/shadow/MediaControlsMediaEventListener.h b/third_party/WebKit/Source/core/html/shadow/MediaControlsMediaEventListener.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..016c70352b66b99846ccda318156a3ed667f9718
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/html/shadow/MediaControlsMediaEventListener.h
|
| @@ -0,0 +1,30 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef MediaControlsMediaEventListener_h
|
| +#define MediaControlsMediaEventListener_h
|
| +
|
| +#include "core/events/EventListener.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class MediaControls;
|
| +
|
| +class MediaControlsMediaEventListener final : public EventListener {
|
| + public:
|
| + explicit MediaControlsMediaEventListener(MediaControls*);
|
| +
|
| + bool operator==(const EventListener&) const override;
|
| +
|
| + DECLARE_VIRTUAL_TRACE();
|
| +
|
| + private:
|
| + void handleEvent(ExecutionContext*, Event*) override;
|
| +
|
| + Member<MediaControls> m_mediaControls;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // MediaControlsMediaEventListener_h
|
|
|