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

Side by Side Diff: components/task_scheduler_util/variations/browser_variations_util.h

Issue 2565013002: Split browser-specific and generic code in components/task_scheduler_util/. (Closed)
Patch Set: fix linux build error Created 4 years 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 // TODO(fdoray): Remove this file once TaskScheduler initialization in the
6 // browser process uses the components/task_scheduler_util/browser/ API on all
7 // platforms.
8
5 #ifndef COMPONENTS_TASK_SCHEDULER_UTIL_VARIATIONS_BROWSER_VARIATIONS_UTIL_H_ 9 #ifndef COMPONENTS_TASK_SCHEDULER_UTIL_VARIATIONS_BROWSER_VARIATIONS_UTIL_H_
6 #define COMPONENTS_TASK_SCHEDULER_UTIL_VARIATIONS_BROWSER_VARIATIONS_UTIL_H_ 10 #define COMPONENTS_TASK_SCHEDULER_UTIL_VARIATIONS_BROWSER_VARIATIONS_UTIL_H_
7 11
8 #include <vector> 12 #include <vector>
9 13
10 #include "base/task_scheduler/scheduler_worker_pool_params.h" 14 #include "base/task_scheduler/scheduler_worker_pool_params.h"
11 15
12 namespace task_scheduler_util { 16 namespace task_scheduler_util {
13 namespace variations { 17 namespace variations {
14 18
15 // Gets the browser SchedulerWorkerPoolParams vector based off of variations. 19 // Gets the browser SchedulerWorkerPoolParams vector based off of variations.
16 // Returns an empty vector on failure. 20 // Returns an empty vector on failure.
17 std::vector<base::SchedulerWorkerPoolParams> 21 std::vector<base::SchedulerWorkerPoolParams>
18 GetBrowserSchedulerWorkerPoolParamsFromVariations(); 22 GetBrowserSchedulerWorkerPoolParamsFromVariations();
19 23
20 // Redirects zero-to-many PostTask APIs to the browser task scheduler based off 24 // Redirects zero-to-many PostTask APIs to the browser task scheduler based off
21 // of input from the variations parameters. 25 // of input from the variations parameters.
22 void MaybePerformBrowserTaskSchedulerRedirection(); 26 void MaybePerformBrowserTaskSchedulerRedirection();
23 27
24 } // variations 28 } // variations
25 } // namespace task_scheduler_util 29 } // namespace task_scheduler_util
26 30
27 #endif // COMPONENTS_TASK_SCHEDULER_UTIL_VARIATIONS_BROWSER_VARIATIONS_UTIL_H_ 31 #endif // COMPONENTS_TASK_SCHEDULER_UTIL_VARIATIONS_BROWSER_VARIATIONS_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698