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

Side by Side Diff: chrome/browser/chromeos/login/screen_locker.h

Issue 6881107: Rework the way Widget::Init works: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 months 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 // Starts screen saver. 161 // Starts screen saver.
162 void StartScreenSaver(); 162 void StartScreenSaver();
163 163
164 // Overridden from AcceleratorTarget: 164 // Overridden from AcceleratorTarget:
165 virtual bool AcceleratorPressed(const views::Accelerator& accelerator); 165 virtual bool AcceleratorPressed(const views::Accelerator& accelerator);
166 166
167 // Event handler for client-event. 167 // Event handler for client-event.
168 CHROMEGTK_CALLBACK_1(ScreenLocker, void, OnClientEvent, GdkEventClient*); 168 CHROMEGTK_CALLBACK_1(ScreenLocker, void, OnClientEvent, GdkEventClient*);
169 169
170 // The screen locker window. 170 // The screen locker window.
171 views::WidgetGtk* lock_window_; 171 views::Widget* lock_window_;
172 172
173 // TYPE_CHILD widget to grab the keyboard/mouse input. 173 // Child widget to grab the keyboard/mouse input.
174 views::WidgetGtk* lock_widget_; 174 views::Widget* lock_widget_;
175 175
176 // A view that accepts password. 176 // A view that accepts password.
177 ScreenLockView* screen_lock_view_; 177 ScreenLockView* screen_lock_view_;
178 178
179 // A view that can display html page as background. 179 // A view that can display html page as background.
180 BackgroundView* background_view_; 180 BackgroundView* background_view_;
181 181
182 // View used to present CAPTCHA challenge input. 182 // View used to present CAPTCHA challenge input.
183 CaptchaView* captcha_view_; 183 CaptchaView* captcha_view_;
184 184
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 base::Time start_time_; 242 base::Time start_time_;
243 // The time when the authentication is started. 243 // The time when the authentication is started.
244 base::Time authentication_start_time_; 244 base::Time authentication_start_time_;
245 245
246 DISALLOW_COPY_AND_ASSIGN(ScreenLocker); 246 DISALLOW_COPY_AND_ASSIGN(ScreenLocker);
247 }; 247 };
248 248
249 } // namespace chromeos 249 } // namespace chromeos
250 250
251 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_H_ 251 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCKER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/message_bubble.cc ('k') | chrome/browser/chromeos/login/screen_locker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698