| Index: public/platform/WebCompositorAnimationPlayerClient.h
|
| diff --git a/public/platform/WebCompositorAnimationPlayerClient.h b/public/platform/WebCompositorAnimationPlayerClient.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..55d7c98786d78d7f570e99a085b5faeebd78079a
|
| --- /dev/null
|
| +++ b/public/platform/WebCompositorAnimationPlayerClient.h
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2015 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 WebCompositorAnimationPlayerClient_h
|
| +#define WebCompositorAnimationPlayerClient_h
|
| +
|
| +namespace blink {
|
| +
|
| +class WebCompositorAnimationPlayer;
|
| +
|
| +// A client for compositor representation of AnimationPlayer.
|
| +class WebCompositorAnimationPlayerClient {
|
| +public:
|
| + virtual ~WebCompositorAnimationPlayerClient() { }
|
| +
|
| + virtual WebCompositorAnimationPlayer* compositorPlayer() const = 0;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // WebCompositorAnimationPlayerClient_h
|
|
|