Commit 2dd07660 authored by Tim Zheng's avatar Tim Zheng Committed by Commit Bot

Update Crostini release version and channel.

We want to release to dev/canary for version 67 and 68 and to release to
all chanels since version 69.

The beta/stable release is pushed back from 68 to 69.
BUG=chromium:800120
TEST=manual test.

Change-Id: I02851521a0b9266157be3c4eb510546637b538a1
Reviewed-on: https://chromium-review.googlesource.com/1100539Reviewed-by: default avatarDan Erat <derat@chromium.org>
Commit-Queue: Tim Zheng <timzheng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#567321}
parent 32b4d4ff
......@@ -22,14 +22,15 @@ bool AreVirtualMachinesAllowedByPolicy() {
return true;
}
// Disabled for beta/stable channel for M67 and all versions older than M67.
// Disabled for beta/stable channel for M67 and M68
// and all versions older than M67.
bool AreVirtualMachinesAllowedByVersionAndChannel() {
const base::Version& current_version = version_info::GetVersion();
if (!current_version.IsValid())
return false;
if (current_version.CompareToWildcardString("67.*") < 0)
return false;
if (current_version.CompareToWildcardString("67.*") == 0) {
if (current_version.CompareToWildcardString("68.*") <= 0) {
version_info::Channel channel = chrome::GetChannel();
return channel != version_info::Channel::STABLE &&
channel != version_info::Channel::BETA;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment