OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_SCHEDULER_RENDERER_SCHEDULER_H_ | 5 #ifndef CONTENT_RENDERER_SCHEDULER_RENDERER_SCHEDULER_H_ |
6 #define CONTENT_RENDERER_SCHEDULER_RENDERER_SCHEDULER_H_ | 6 #define CONTENT_RENDERER_SCHEDULER_RENDERER_SCHEDULER_H_ |
7 | 7 |
8 #include "content/renderer/scheduler/single_thread_idle_task_runner.h" | 8 #include "content/renderer/scheduler/single_thread_idle_task_runner.h" |
9 #include "content/renderer/scheduler/task_queue_manager.h" | 9 #include "content/renderer/scheduler/task_queue_manager.h" |
| 10 #include "third_party/WebKit/public/web/WebInputEvent.h" |
10 | 11 |
11 namespace cc { | 12 namespace cc { |
12 struct BeginFrameArgs; | 13 struct BeginFrameArgs; |
13 } | 14 } |
14 | 15 |
15 namespace content { | 16 namespace content { |
16 | 17 |
17 class CONTENT_EXPORT RendererScheduler { | 18 class CONTENT_EXPORT RendererScheduler { |
18 public: | 19 public: |
19 virtual ~RendererScheduler(); | 20 virtual ~RendererScheduler(); |
(...skipping 14 matching lines...) Expand all Loading... |
34 // Called to notify about the start of a new frame. Must be called from the | 35 // Called to notify about the start of a new frame. Must be called from the |
35 // main thread. | 36 // main thread. |
36 virtual void WillBeginFrame(const cc::BeginFrameArgs& args) = 0; | 37 virtual void WillBeginFrame(const cc::BeginFrameArgs& args) = 0; |
37 | 38 |
38 // Called to notify that a previously begun frame was committed. Must be | 39 // Called to notify that a previously begun frame was committed. Must be |
39 // called from the main thread. | 40 // called from the main thread. |
40 virtual void DidCommitFrameToCompositor() = 0; | 41 virtual void DidCommitFrameToCompositor() = 0; |
41 | 42 |
42 // Tells the scheduler that the system received an input event. Called by the | 43 // Tells the scheduler that the system received an input event. Called by the |
43 // compositor (impl) thread. | 44 // compositor (impl) thread. |
44 virtual void DidReceiveInputEventOnCompositorThread() = 0; | 45 virtual void DidReceiveInputEventOnCompositorThread( |
| 46 blink::WebInputEvent::Type type) = 0; |
| 47 |
| 48 // Tells the scheduler that the system is displaying an input animation (e.g. |
| 49 // a fling). Called by the compositor (impl) thread. |
| 50 virtual void DidAnimateForInputOnCompositorThread() = 0; |
45 | 51 |
46 // Returns true if there is high priority work pending on the main thread | 52 // Returns true if there is high priority work pending on the main thread |
47 // and the caller should yield to let the scheduler service that work. | 53 // and the caller should yield to let the scheduler service that work. |
48 // Must be called from the main thread. | 54 // Must be called from the main thread. |
49 virtual bool ShouldYieldForHighPriorityWork() = 0; | 55 virtual bool ShouldYieldForHighPriorityWork() = 0; |
50 | 56 |
51 // Shuts down the scheduler by dropping any remaining pending work in the work | 57 // Shuts down the scheduler by dropping any remaining pending work in the work |
52 // queues. After this call any work posted to the task runners will be | 58 // queues. After this call any work posted to the task runners will be |
53 // silently dropped. | 59 // silently dropped. |
54 virtual void Shutdown() = 0; | 60 virtual void Shutdown() = 0; |
55 | 61 |
56 protected: | 62 protected: |
57 RendererScheduler(); | 63 RendererScheduler(); |
58 DISALLOW_COPY_AND_ASSIGN(RendererScheduler); | 64 DISALLOW_COPY_AND_ASSIGN(RendererScheduler); |
59 }; | 65 }; |
60 | 66 |
61 } // namespace content | 67 } // namespace content |
62 | 68 |
63 #endif // CONTENT_RENDERER_SCHEDULER_RENDERER_SCHEDULER_H_ | 69 #endif // CONTENT_RENDERER_SCHEDULER_RENDERER_SCHEDULER_H_ |
OLD | NEW |