blob: ded10bf5b56229d363a758ef9147e57cd58ad584 [file] [log] [blame]
// 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
#include "public/platform/WebCommon.h"
namespace blink {
class WebCompositorAnimationPlayer;
// A client for compositor representation of AnimationPlayer.
class BLINK_PLATFORM_EXPORT WebCompositorAnimationPlayerClient {
public:
virtual ~WebCompositorAnimationPlayerClient() { }
virtual WebCompositorAnimationPlayer* compositorPlayer() const = 0;
};
} // namespace blink
#endif // WebCompositorAnimationPlayerClient_h