summaryrefslogtreecommitdiffstats
path: root/chromium/content/public/browser/android/compositor_client.h
blob: 84a263e0ed67fbce01b8df31845f3b096c807c46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 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_CLIENT_H_
#define CONTENT_PUBLIC_BROWSER_ANDROID_COMPOSITOR_CLIENT_H_

#include "content/common/content_export.h"

namespace content {

class CONTENT_EXPORT CompositorClient {
 public:
  // Gives the client a chance for layout changes before compositing.
  virtual void Layout() {}

  // The compositor has completed swapping a frame.
  virtual void OnSwapBuffersCompleted(int pending_swap_buffers) {}

  // Tells the client that GL resources were lost and need to be reinitialized.
  virtual void DidLoseResources() {}

 protected:
  CompositorClient() {}
  virtual ~CompositorClient() {}

 private:
  DISALLOW_COPY_AND_ASSIGN(CompositorClient);
};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_ANDROID_COMPOSITOR_CLIENT_H_