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

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

Issue 2664253005: [Omaha] Move most functionality to OmahaBase, add JobService (Closed)
Patch Set: [Omaha] Move most functionality to OmahaBase, add JobService Created 3 years, 9 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
« no previous file with comments | « chrome/android/javatests/src/org/chromium/chrome/browser/omaha/OmahaClientTest.java ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 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 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 package org.chromium.components.background_task_scheduler; 5 package org.chromium.components.background_task_scheduler;
6 6
7 /** 7 /**
8 * This class lists all the unique task IDs used around in Chromium. These are l isted here to ensure 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. 9 * that there is no overlap of task IDs between different users of the Backgroun dTaskScheduler.
10 */ 10 */
11 public final class TaskIds { 11 public final class TaskIds {
12 public static final int TEST = 0x00008378; 12 public static final int TEST = 0x00008378;
13 public static final int OMAHA_JOB_ID = 0x00011684;
13 14
14 public static final int GCM_BACKGROUND_TASK_JOB_ID = 1; 15 public static final int GCM_BACKGROUND_TASK_JOB_ID = 1;
15 public static final int NOTIFICATION_SERVICE_JOB_ID = 21; 16 public static final int NOTIFICATION_SERVICE_JOB_ID = 21;
16 17
17 private TaskIds() {} 18 private TaskIds() {}
18 } 19 }
OLDNEW
« no previous file with comments | « chrome/android/javatests/src/org/chromium/chrome/browser/omaha/OmahaClientTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698