blob: c356b48143a9aa65fea19a588d5d6a56111e7809 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/obsolete_system/obsolete_system.h"
#include "base/win/windows_version.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/chromium_strings.h"
#include "ui/base/l10n/l10n_util.h"
// static
bool ObsoleteSystem::IsObsoleteNowOrSoon() {
return base::win::GetVersion() < base::win::VERSION_WIN7;
}
// static
base::string16 ObsoleteSystem::LocalizedObsoleteString() {
return l10n_util::GetStringUTF16(IsEndOfTheLine()
? IDS_WIN_XP_VISTA_OBSOLETE_NOW
: IDS_WIN_XP_VISTA_OBSOLETE_SOON);
}
// static
bool ObsoleteSystem::IsEndOfTheLine() {
return false;
}
// static
const char* ObsoleteSystem::GetLinkURL() {
return chrome::kWindowsXPVistaDeprecationURL;
}
|