OLD | NEW |
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" | |
6 #include "chrome/browser/chromeos/login/user.h" | |
7 #include "chrome/browser/chromeos/notifications/system_notification.h" | 5 #include "chrome/browser/chromeos/notifications/system_notification.h" |
8 #include "chrome/browser/chromeos/xinput_hierarchy_changed_event_listener.h" | |
9 #include "chrome/browser/ui/views/frame/browser_view.h" | |
10 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" | |
11 #include "chrome/browser/notifications/balloon_collection.h" | 6 #include "chrome/browser/notifications/balloon_collection.h" |
12 | 7 |
13 namespace chromeos { | 8 namespace chromeos { |
14 | 9 |
15 //////////////////////////////////////////////////////////////////////////////// | 10 //////////////////////////////////////////////////////////////////////////////// |
16 // SystemNotification | 11 // SystemNotification |
17 | 12 |
18 void SystemNotification::Init(int icon_resource_id) { | 13 void SystemNotification::Init(int icon_resource_id) { |
19 NOTIMPLEMENTED(); | 14 NOTIMPLEMENTED(); |
20 } | 15 } |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 SystemNotification::Delegate::Delegate(const std::string& id) | 67 SystemNotification::Delegate::Delegate(const std::string& id) |
73 : id_(id) { | 68 : id_(id) { |
74 NOTIMPLEMENTED(); | 69 NOTIMPLEMENTED(); |
75 } | 70 } |
76 | 71 |
77 std::string SystemNotification::Delegate::id() const { | 72 std::string SystemNotification::Delegate::id() const { |
78 NOTIMPLEMENTED(); | 73 NOTIMPLEMENTED(); |
79 return id_; | 74 return id_; |
80 } | 75 } |
81 | 76 |
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 | 77 } // namespace chromeos |
OLD | NEW |