Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: components/scheduler/renderer/renderer_scheduler.h

Issue 1914143002: Experimental 'purging and suspending' backgrounded tabs behind the flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address on reviews Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698