Provide core API permissions to extensions_unittests
[chromium-blink-merge.git] / cc / trees / layer_tree_host_client.h
blob5d51fafefb7eab2c9c03186d4293ff382ee6ed30
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_TREES_LAYER_TREE_HOST_CLIENT_H_
6 #define CC_TREES_LAYER_TREE_HOST_CLIENT_H_
8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/time/time.h"
12 namespace gfx {
13 class Vector2d;
16 namespace cc {
17 class ContextProvider;
18 class InputHandlerClient;
19 class OutputSurface;
20 struct BeginFrameArgs;
22 class LayerTreeHostClient {
23 public:
24 virtual void WillBeginMainFrame(int frame_id) = 0;
25 // Marks finishing compositing-related tasks on the main thread. In threaded
26 // mode, this corresponds to DidCommit().
27 virtual void BeginMainFrame(const BeginFrameArgs& args) = 0;
28 virtual void DidBeginMainFrame() = 0;
29 virtual void Layout() = 0;
30 virtual void ApplyScrollAndScale(const gfx::Vector2d& scroll_delta,
31 float page_scale) = 0;
32 // Creates an OutputSurface. If fallback is true, it should attempt to
33 // create an OutputSurface that is guaranteed to initialize correctly.
34 virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback) = 0;
35 virtual void DidInitializeOutputSurface() = 0;
36 virtual void WillCommit() = 0;
37 virtual void DidCommit() = 0;
38 virtual void DidCommitAndDrawFrame() = 0;
39 virtual void DidCompleteSwapBuffers() = 0;
41 // Requests that the client insert a rate limiting token in the shared main
42 // thread context's command stream that will block if the context gets too far
43 // ahead of the compositor's command stream. Only needed if the tree contains
44 // a TextureLayer that calls SetRateLimitContext(true).
45 virtual void RateLimitSharedMainThreadContext() {}
47 // This hook is for testing.
48 virtual void DidFailToInitializeOutputSurface() {}
50 protected:
51 virtual ~LayerTreeHostClient() {}
54 } // namespace cc
56 #endif // CC_TREES_LAYER_TREE_HOST_CLIENT_H_