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

Unified Diff: third_party/WebKit/public/platform/WebFrameScheduler.h

Issue 2023033003: scheduler: Throttle timers in out-of-view frames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/public/platform/WebFrameScheduler.h
diff --git a/third_party/WebKit/public/platform/WebFrameScheduler.h b/third_party/WebKit/public/platform/WebFrameScheduler.h
index e1454b3b71cc5dac8317340bdff3aa996d4bfeb6..8d8910eb9181c11b00c010cecc0860ea9f3e6834 100644
--- a/third_party/WebKit/public/platform/WebFrameScheduler.h
+++ b/third_party/WebKit/public/platform/WebFrameScheduler.h
@@ -25,6 +25,11 @@ public:
// The scheduler may throttle tasks associated with pages that are not visible.
virtual void setPageVisible(bool) { }
+ // Set whether this frame is cross origin w.r.t. the top level frame. Cross
+ // origin frames may use a different scheduling policy from same origin
+ // frames.
+ virtual void setCrossOrigin(bool) {}
+
// Returns the WebTaskRunner for loading tasks.
// WebFrameScheduler owns the returned WebTaskRunner.
virtual WebTaskRunner* loadingTaskRunner() { return nullptr; }
@@ -32,6 +37,10 @@ public:
// Returns the WebTaskRunner for timer tasks.
// WebFrameScheduler owns the returned WebTaskRunner.
virtual WebTaskRunner* timerTaskRunner() { return nullptr; }
+
+ // Returns the WebTaskRunner for tasks which don't fit into the above
+ // categories. WebFrameScheduler owns the returned WebTaskRunner.
+ virtual WebTaskRunner* defaultTaskRunner() { return nullptr; }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698