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

Side by Side Diff: components/background_task_scheduler/android/java/src/org/chromium/components/background_task_scheduler/TaskIds.java

Issue 2714463002: [android] Add JobScheduler-based BackgroundTaskScheduler. (Closed)
Patch Set: Clean up background section of documentation Created 3 years, 10 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.components.background_task_scheduler;
6
7 /**
8 * This class lists all the unique task IDs used around in Chromium. These are l isted here to ensure
9 * that there is no overlap of task IDs between different users of the Backgroun dTaskScheduler.
10 */
11 public final class TaskIds {
12 public static final int OMAHA_JOB_ID = 0x00011684;
nyquist 2017/02/22 18:24:12 Self-review: Remove this ID or make a special ID f
nyquist 2017/02/24 23:41:12 Done.
13
14 private TaskIds() {}
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698