| Index: chrome/browser/signin/easy_unlock_service_signin_chromeos.cc
|
| diff --git a/chrome/browser/signin/easy_unlock_service_signin_chromeos.cc b/chrome/browser/signin/easy_unlock_service_signin_chromeos.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2db7f05b4b0e5108a5e458a6c682a0f5dde28c5f
|
| --- /dev/null
|
| +++ b/chrome/browser/signin/easy_unlock_service_signin_chromeos.cc
|
| @@ -0,0 +1,70 @@
|
| +// 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/signin/easy_unlock_service_signin_chromeos.h"
|
| +
|
| +EasyUnlockServiceSignin::EasyUnlockServiceSignin(Profile* profile)
|
| + : EasyUnlockService(profile) {
|
| +}
|
| +
|
| +EasyUnlockServiceSignin::~EasyUnlockServiceSignin() {
|
| +}
|
| +
|
| +EasyUnlockService::Type EasyUnlockServiceSignin::GetType() const {
|
| + return EasyUnlockService::TYPE_SIGNIN;
|
| +}
|
| +
|
| +std::string EasyUnlockServiceSignin::GetUserEmail() const {
|
| + // TODO(tbarzic): Implement this (http://crbug.com/401634).
|
| + return "";
|
| +}
|
| +
|
| +void EasyUnlockServiceSignin::LaunchSetup() {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +const base::DictionaryValue* EasyUnlockServiceSignin::GetPermitAccess() const {
|
| + // TODO(tbarzic): Implement this (http://crbug.com/401634).
|
| + return NULL;
|
| +}
|
| +
|
| +void EasyUnlockServiceSignin::SetPermitAccess(
|
| + const base::DictionaryValue& permit) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void EasyUnlockServiceSignin::ClearPermitAccess() {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +const base::ListValue* EasyUnlockServiceSignin::GetRemoteDevices() const {
|
| + // TODO(tbarzic): Implement this (http://crbug.com/401634).
|
| + return NULL;
|
| +}
|
| +
|
| +void EasyUnlockServiceSignin::SetRemoteDevices(
|
| + const base::ListValue& devices) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void EasyUnlockServiceSignin::ClearRemoteDevices() {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void EasyUnlockServiceSignin::RunTurnOffFlow() {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void EasyUnlockServiceSignin::ResetTurnOffFlow() {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void EasyUnlockServiceSignin::InitializeInternal() {
|
| +}
|
| +
|
| +bool EasyUnlockServiceSignin::IsAllowedInternal() {
|
| + // TODO(tbarzic): Implement this (http://crbug.com/401634).
|
| + return false;
|
| +}
|
| +
|
|
|