Commit 103ae3cf authored by samuong's avatar samuong Committed by Commit bot

[chromedriver] Drop support for M38 and add support for M41.

BUG=
TBR=stgao@chromium.org

Review URL: https://codereview.chromium.org/883743003

Cr-Commit-Position: refs/heads/master@{#313386}
parent e52b234b
......@@ -10,9 +10,9 @@ import urllib
import util
CHROME_38_REVISION = '289947'
CHROME_39_REVISION = '297063'
CHROME_40_REVISION = '303370'
CHROME_41_REVISION = '310968'
_SITE = 'http://commondatastorage.googleapis.com'
......
......@@ -9,7 +9,7 @@
namespace {
// This variable must be able to be found and parsed by the upload script.
const int kMinimumSupportedChromeVersion[] = {38, 0, 2125, 0};
const int kMinimumSupportedChromeVersion[] = {39, 0, 2171, 0};
} // namespace
......
......@@ -191,9 +191,9 @@ def main():
latest_snapshot_revision = archive.GetLatestSnapshotVersion()
versions = [
['HEAD', latest_snapshot_revision],
['41', archive.CHROME_41_REVISION],
['40', archive.CHROME_40_REVISION],
['39', archive.CHROME_39_REVISION],
['38', archive.CHROME_38_REVISION],
['39', archive.CHROME_39_REVISION]
]
code = 0
for version in versions:
......
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