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

Side by Side Diff: chrome/browser/chromeos/login/screens/gaia_screen.h

Issue 293613003: ChromeOS login webui refactoring: split user selection/gaia login screens. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_GAIA_SCREEN_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_GAIA_SCREEN_H_
7
8 #include <string>
9
10 #include "base/bind.h"
11 #include "base/compiler_specific.h"
12
13 namespace chromeos {
14
15 class LoginDisplayWebUIHandler;
16
17 class GaiaScreen {
Nikita (slow) 2014/05/20 12:14:29 nit: Comment
Nikita (slow) 2014/05/20 12:14:29 Are you planning to define something like GaiaScre
Denis Kuznetsov (DE-MUC) 2014/05/20 13:19:00 Done.
Denis Kuznetsov (DE-MUC) 2014/05/20 13:19:00 Yes, after "signin_screen_handler" is split into 3
18 public:
19 GaiaScreen();
20 virtual ~GaiaScreen();
21 virtual void SetHandler(LoginDisplayWebUIHandler* handler);
Nikita (slow) 2014/05/20 12:14:29 Please remove virtual for now since there's no int
Denis Kuznetsov (DE-MUC) 2014/05/20 13:19:00 Done.
22
23 private:
24 LoginDisplayWebUIHandler* handler_;
25
26 DISALLOW_COPY_AND_ASSIGN(GaiaScreen);
27 };
28
29 } // namespace chromeos
30
31 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_GAIA_SCREEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698