| Index: chrome/browser/chromeos/cros/fake/fake_login_library.h
|
| diff --git a/chrome/browser/chromeos/cros/fake/fake_login_library.h b/chrome/browser/chromeos/cros/fake/fake_login_library.h
|
| deleted file mode 100644
|
| index cb85992d90e6d2246a51e7c09ac0e77478630203..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/chromeos/cros/fake/fake_login_library.h
|
| +++ /dev/null
|
| @@ -1,32 +0,0 @@
|
| -// Copyright (c) 2010 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.
|
| -
|
| -#ifndef CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_LOGIN_LIBRARY_H_
|
| -#define CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_LOGIN_LIBRARY_H_
|
| -
|
| -#include <string>
|
| -
|
| -#include "chrome/browser/chromeos/cros/login_library.h"
|
| -
|
| -namespace chromeos {
|
| -
|
| -class FakeLoginLibrary : public LoginLibrary {
|
| - public:
|
| - FakeLoginLibrary() {}
|
| - virtual ~FakeLoginLibrary() {}
|
| - virtual bool EmitLoginPromptReady() {
|
| - return true;
|
| - }
|
| - virtual bool StartSession(const std::string& user_email,
|
| - const std::string& unique_id) {
|
| - return true;
|
| - }
|
| - virtual bool StopSession(const std::string& unique_id) {
|
| - return true;
|
| - }
|
| -};
|
| -
|
| -} // namespace chromeos
|
| -
|
| -#endif // CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_LOGIN_LIBRARY_H_
|
|
|