blob: 87fc267f4226fde2df6648c411993a5858eef037 [file] [log] [blame]
// Copyright 2014 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/mac/mac_util.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 false;
}
// static
base::string16 ObsoleteSystem::LocalizedObsoleteString() {
return l10n_util::GetStringUTF16(IsEndOfTheLine()
? IDS_MAC_10_678_OBSOLETE_NOW
: IDS_MAC_10_678_OBSOLETE_SOON);
}
// static
bool ObsoleteSystem::IsEndOfTheLine() {
return true;
}
// static
const char* ObsoleteSystem::GetLinkURL() {
return chrome::kMac10_678_DeprecationURL;
}