| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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.chrome.browser; | 5 package org.chromium.chrome.browser; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * A utility class for querying information about the current Chrome build. | 8 * A utility class for querying information about the current Chrome build. |
| 9 * Intentionally doesn't depend on native so that the data can be accessed befor
e | 9 * Intentionally doesn't depend on native so that the data can be accessed befor
e |
| 10 * libchrome.so is loaded. | 10 * libchrome.so is loaded. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 /** | 41 /** |
| 42 * @return Whether this build is a stable build. | 42 * @return Whether this build is a stable build. |
| 43 */ | 43 */ |
| 44 public static boolean isStableBuild() { | 44 public static boolean isStableBuild() { |
| 45 return ChromeVersionConstants.CHANNEL == ChromeVersionConstants.CHANNEL_
STABLE | 45 return ChromeVersionConstants.CHANNEL == ChromeVersionConstants.CHANNEL_
STABLE |
| 46 || ChromeVersionConstants.CHANNEL == ChromeVersionConstants.
CHANNEL_WORK; | 46 || ChromeVersionConstants.CHANNEL == ChromeVersionConstants.
CHANNEL_WORK; |
| 47 } | 47 } |
| 48 | 48 |
| 49 /** | 49 /** |
| 50 * @return Whether this build is a work build. |
| 51 */ |
| 52 public static boolean isWorkBuild() { |
| 53 return ChromeVersionConstants.CHANNEL == ChromeVersionConstants.CHANNEL_
WORK; |
| 54 } |
| 55 |
| 56 /** |
| 50 * @return Whether this is an official (i.e. Google Chrome) build. | 57 * @return Whether this is an official (i.e. Google Chrome) build. |
| 51 */ | 58 */ |
| 52 public static boolean isOfficialBuild() { | 59 public static boolean isOfficialBuild() { |
| 53 return ChromeVersionConstants.IS_OFFICIAL_BUILD; | 60 return ChromeVersionConstants.IS_OFFICIAL_BUILD; |
| 54 } | 61 } |
| 55 } | 62 } |
| OLD | NEW |