| Index: content/public/browser/android/compositor_provider_client.h
|
| diff --git a/content/public/browser/android/compositor_provider_client.h b/content/public/browser/android/compositor_provider_client.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..18aded07c58f6db14e20fa2be17df83589734bf2
|
| --- /dev/null
|
| +++ b/content/public/browser/android/compositor_provider_client.h
|
| @@ -0,0 +1,22 @@
|
| +// Copyright (c) 2013 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 CONTENT_PUBLIC_BROWSER_ANDROID_COMPOSITOR_PROVIDER_CLIENT_H_
|
| +#define CONTENT_PUBLIC_BROWSER_ANDROID_COMPOSITOR_PROVIDER_CLIENT_H_
|
| +
|
| +namespace content {
|
| +
|
| +class Compositor;
|
| +
|
| +class CONTENT_EXPORT CompositorProviderClient {
|
| + public:
|
| + virtual void ChangeCompositor(Compositor* compositor) = 0;
|
| +
|
| + protected:
|
| + virtual ~CompositorProviderClient() {}
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_PUBLIC_BROWSER_ANDROID_COMPOSITOR_PROVIDER_CLIENT_H_
|
|
|