Chromium Code Reviews| Index: third_party/WebKit/Source/modules/media_controls/elements/MediaControlElementsHelper.h |
| diff --git a/third_party/WebKit/Source/modules/media_controls/elements/MediaControlElementsHelper.h b/third_party/WebKit/Source/modules/media_controls/elements/MediaControlElementsHelper.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8ed9041ed52121bd719edcdf93604dacba9d4375 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/media_controls/elements/MediaControlElementsHelper.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright 2017 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 MediaControlElementsHelper_h |
| +#define MediaControlElementsHelper_h |
| + |
| +#include "platform/wtf/Allocator.h" |
| + |
| +namespace blink { |
| + |
| +class Event; |
| + |
| +class MediaControlElementsHelper final { |
|
whywhat
2017/04/12 15:36:41
Class comment? It's not clear why it's needed at a
mlamouri (slow - plz ping)
2017/04/13 21:59:54
Got it.
|
| + STATIC_ONLY(MediaControlElementsHelper); |
| + |
| + public: |
| + static bool IsUserInteractionEvent(Event*); |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // MediaControlElementsHelper_h |