Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Side by Side Diff: chrome/browser/chromeos/cros_stubs_aura.cc

Issue 8711003: Enable WebUI ScreenLocker for aura by abstracting lock window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make virtual constructors private and fix order of lock window initialization. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/login/screen_locker.h" 5 #include "chrome/browser/chromeos/login/screen_locker.h"
6 #include "chrome/browser/chromeos/login/user.h" 6 #include "chrome/browser/chromeos/login/user.h"
oshima 2011/11/29 20:18:06 these two are no longer necessary?
flackr 2011/11/30 20:16:54 Done.
7 #include "chrome/browser/chromeos/notifications/system_notification.h" 7 #include "chrome/browser/chromeos/notifications/system_notification.h"
8 #include "chrome/browser/chromeos/xinput_hierarchy_changed_event_listener.h" 8 #include "chrome/browser/chromeos/xinput_hierarchy_changed_event_listener.h"
9 #include "chrome/browser/ui/views/frame/browser_view.h" 9 #include "chrome/browser/ui/views/frame/browser_view.h"
10 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" 10 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
oshima 2011/11/29 20:18:06 ditto (for above three)
flackr 2011/11/30 20:16:54 Done.
11 #include "chrome/browser/notifications/balloon_collection.h" 11 #include "chrome/browser/notifications/balloon_collection.h"
12 12
13 namespace chromeos { 13 namespace chromeos {
14 14
15 //////////////////////////////////////////////////////////////////////////////// 15 ////////////////////////////////////////////////////////////////////////////////
16 // SystemNotification 16 // SystemNotification
17 17
18 void SystemNotification::Init(int icon_resource_id) { 18 void SystemNotification::Init(int icon_resource_id) {
19 NOTIMPLEMENTED(); 19 NOTIMPLEMENTED();
20 } 20 }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 SystemNotification::Delegate::Delegate(const std::string& id) 72 SystemNotification::Delegate::Delegate(const std::string& id)
73 : id_(id) { 73 : id_(id) {
74 NOTIMPLEMENTED(); 74 NOTIMPLEMENTED();
75 } 75 }
76 76
77 std::string SystemNotification::Delegate::id() const { 77 std::string SystemNotification::Delegate::id() const {
78 NOTIMPLEMENTED(); 78 NOTIMPLEMENTED();
79 return id_; 79 return id_;
80 } 80 }
81 81
82 //////////////////////////////////////////////////////////////////////////////
83 // ScreenLocker
84
85 ScreenLocker::ScreenLocker(const chromeos::User& user) : user_(user) {
86 NOTIMPLEMENTED();
87 }
88
89 ScreenLocker::~ScreenLocker() {
90 NOTIMPLEMENTED();
91 }
92
93 void ScreenLocker::Init() {
94 NOTIMPLEMENTED();
95 }
96
97 void ScreenLocker::OnLoginFailure(const LoginFailure& error) {
98 NOTIMPLEMENTED();
99 }
100
101 void ScreenLocker::OnLoginSuccess(
102 const std::string&,
103 const std::string&,
104 const GaiaAuthConsumer::ClientLoginResult&,
105 bool,
106 bool) {
107 NOTIMPLEMENTED();
108 }
109
110 void ScreenLocker::Authenticate(const string16& password) {
111 NOTIMPLEMENTED();
112 }
113
114 void ScreenLocker::ClearErrors() {
115 NOTIMPLEMENTED();
116 }
117
118 void ScreenLocker::EnableInput() {
119 NOTIMPLEMENTED();
120 }
121
122 void ScreenLocker::Signout() {
123 NOTIMPLEMENTED();
124 }
125
126 void ScreenLocker::ShowCaptchaAndErrorMessage(const GURL& captcha_url,
127 const string16& message) {
128 NOTIMPLEMENTED();
129 }
130
131 void ScreenLocker::ShowErrorMessage(const string16& message,
132 bool sign_out_only) {
133 NOTIMPLEMENTED();
134 }
135
136 void ScreenLocker::SetLoginStatusConsumer(
137 chromeos::LoginStatusConsumer* consumer) {
138 NOTIMPLEMENTED();
139 }
140
141 // static
142 void ScreenLocker::Show() {
143 NOTIMPLEMENTED();
144 }
145
146 // static
147 void ScreenLocker::Hide() {
148 NOTIMPLEMENTED();
149 }
150
151 // static
152 void ScreenLocker::UnlockScreenFailed() {
153 NOTIMPLEMENTED();
154 }
155
156 // static
157 void ScreenLocker::InitClass() {
158 NOTIMPLEMENTED();
159 }
160
161 void ScreenLocker::ScreenLockReady() {
162 NOTIMPLEMENTED();
163 }
164
165 } // namespace chromeos 82 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/lock_window.h » ('j') | chrome/browser/chromeos/login/lock_window.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698