| Index: chrome/browser/chromeos/cros_stubs_aura.cc
|
| diff --git a/chrome/browser/chromeos/cros_stubs_aura.cc b/chrome/browser/chromeos/cros_stubs_aura.cc
|
| index 2ab7fd27f9b7cc8910fe0dfde1758bbb5cece79f..673f0a1ecd224a9ba5e00f2e416e87ce88ffa9f7 100644
|
| --- a/chrome/browser/chromeos/cros_stubs_aura.cc
|
| +++ b/chrome/browser/chromeos/cros_stubs_aura.cc
|
| @@ -2,12 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/browser/chromeos/login/screen_locker.h"
|
| -#include "chrome/browser/chromeos/login/user.h"
|
| #include "chrome/browser/chromeos/notifications/system_notification.h"
|
| -#include "chrome/browser/chromeos/xinput_hierarchy_changed_event_listener.h"
|
| -#include "chrome/browser/ui/views/frame/browser_view.h"
|
| -#include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
|
| #include "chrome/browser/notifications/balloon_collection.h"
|
|
|
| namespace chromeos {
|
| @@ -79,87 +74,4 @@ std::string SystemNotification::Delegate::id() const {
|
| return id_;
|
| }
|
|
|
| -//////////////////////////////////////////////////////////////////////////////
|
| -// ScreenLocker
|
| -
|
| -ScreenLocker::ScreenLocker(const chromeos::User& user) : user_(user) {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -ScreenLocker::~ScreenLocker() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::Init() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::OnLoginFailure(const LoginFailure& error) {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::OnLoginSuccess(
|
| - const std::string&,
|
| - const std::string&,
|
| - const GaiaAuthConsumer::ClientLoginResult&,
|
| - bool,
|
| - bool) {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::Authenticate(const string16& password) {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::ClearErrors() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::EnableInput() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::Signout() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::ShowCaptchaAndErrorMessage(const GURL& captcha_url,
|
| - const string16& message) {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::ShowErrorMessage(const string16& message,
|
| - bool sign_out_only) {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::SetLoginStatusConsumer(
|
| - chromeos::LoginStatusConsumer* consumer) {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -// static
|
| -void ScreenLocker::Show() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -// static
|
| -void ScreenLocker::Hide() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -// static
|
| -void ScreenLocker::UnlockScreenFailed() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -// static
|
| -void ScreenLocker::InitClass() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| -void ScreenLocker::ScreenLockReady() {
|
| - NOTIMPLEMENTED();
|
| -}
|
| -
|
| } // namespace chromeos
|
|
|