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 COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_ | 5 #ifndef COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_ |
6 #define COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_ | 6 #define COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
121 // driven by this process. A stricter condition than |OnRendererHidden()|, the | 121 // driven by this process. A stricter condition than |OnRendererHidden()|, the |
122 // process is assumed to be foregrounded when the scheduler is constructed. | 122 // process is assumed to be foregrounded when the scheduler is constructed. |
123 // Must be called on the main thread. | 123 // Must be called on the main thread. |
124 virtual void OnRendererBackgrounded() = 0; | 124 virtual void OnRendererBackgrounded() = 0; |
125 | 125 |
126 // Tells the scheduler that the renderer process has been foregrounded. | 126 // Tells the scheduler that the renderer process has been foregrounded. |
127 // This is the assumed state when the scheduler is constructed. | 127 // This is the assumed state when the scheduler is constructed. |
128 // Must be called on the main thread. | 128 // Must be called on the main thread. |
129 virtual void OnRendererForegrounded() = 0; | 129 virtual void OnRendererForegrounded() = 0; |
130 | 130 |
131 // Tells the scheduler that the render process should be suspended. | |
Sami
2016/05/12 11:31:35
Please also add:
This can only be done when the r
hajimehoshi
2016/05/13 06:07:45
Done.
| |
132 virtual void SuspendRenderer() = 0; | |
133 | |
131 // Tells the scheduler that a navigation task is pending. While any navigation | 134 // Tells the scheduler that a navigation task is pending. While any navigation |
132 // tasks are pending, the scheduler will ensure that loading tasks are not | 135 // tasks are pending, the scheduler will ensure that loading tasks are not |
133 // blocked even if they are expensive. Must be called on the main thread. | 136 // blocked even if they are expensive. Must be called on the main thread. |
134 virtual void AddPendingNavigation() = 0; | 137 virtual void AddPendingNavigation() = 0; |
135 | 138 |
136 // Tells the scheduler that a navigation task is no longer pending. | 139 // Tells the scheduler that a navigation task is no longer pending. |
137 // Must be called on the main thread. | 140 // Must be called on the main thread. |
138 virtual void RemovePendingNavigation() = 0; | 141 virtual void RemovePendingNavigation() = 0; |
139 | 142 |
140 // Tells the scheduler that a navigation has started. The scheduler will | 143 // Tells the scheduler that a navigation has started. The scheduler will |
(...skipping 25 matching lines...) Expand all Loading... | |
166 base::trace_event::BlameContext* blame_context) = 0; | 169 base::trace_event::BlameContext* blame_context) = 0; |
167 | 170 |
168 protected: | 171 protected: |
169 RendererScheduler(); | 172 RendererScheduler(); |
170 DISALLOW_COPY_AND_ASSIGN(RendererScheduler); | 173 DISALLOW_COPY_AND_ASSIGN(RendererScheduler); |
171 }; | 174 }; |
172 | 175 |
173 } // namespace scheduler | 176 } // namespace scheduler |
174 | 177 |
175 #endif // COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_ | 178 #endif // COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_ |
OLD | NEW |