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

Unified Diff: components/offline_pages/background/request_coordinator.h

Issue 1985923002: Wireframe scheduler implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CR feedback per DougArnett 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 side-by-side diff with in-line comments
Download patch
Index: components/offline_pages/background/request_coordinator.h
diff --git a/components/offline_pages/background/request_coordinator.h b/components/offline_pages/background/request_coordinator.h
index 4ab1e5a0680833a31c30f79eec2e1cec28cbb932..d2da172fd3bce4b17639a73c872ed9a62b7c9743 100644
--- a/components/offline_pages/background/request_coordinator.h
+++ b/components/offline_pages/background/request_coordinator.h
@@ -57,7 +57,8 @@ class RequestCoordinator :
// Returns the request queue used for requests. Coordinator keeps ownership.
RequestQueue* GetQueue() { return queue_.get(); }
- Scheduler* GetSchedulerForTesting() { return scheduler_.get(); }
+ // Return an unowned pointer to the Scheduler.
+ Scheduler* GetScheduler() { return scheduler_.get(); }
dewittj 2016/05/25 23:16:45 I think that any functions that are inlined like t
Pete Williamson 2016/05/25 23:59:58 Done.
// Returns the status of the most recent offlining.
Offliner::CompletionStatus last_offlining_status() {

Powered by Google App Engine
This is Rietveld 408576698