Chromium Code Reviews| Index: third_party/WebKit/Source/platform/graphics/CompositorMutationsTarget.h |
| diff --git a/third_party/WebKit/Source/platform/graphics/CompositorMutationsTarget.h b/third_party/WebKit/Source/platform/graphics/CompositorMutationsTarget.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..057a2a7341f3f9e0f0aa71a6fe238597ab29bcab |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/platform/graphics/CompositorMutationsTarget.h |
| @@ -0,0 +1,21 @@ |
| +// 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 CompositorMutationsTarget_h |
| +#define CompositorMutationsTarget_h |
| + |
| +#include "platform/PlatformExport.h" |
| +#include "platform/graphics/CompositorMutation.h" |
| + |
| +namespace blink { |
| + |
| +class PLATFORM_EXPORT CompositorMutationsTarget { |
| +public: |
| + virtual void applyMutations(CompositorMutations*) = 0; |
|
esprehn
2016/03/22 21:16:49
nothing calls or uses this?
majidvp
2016/03/23 22:24:53
Fixed. Added |CompositorMutatorClient| which uses
|
| + virtual ~CompositorMutationsTarget() {} |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // CompositorMutationsTarget_h |