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

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: Yet another merge 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 // This class represents GAIA screen: login screen that is responsible for
18 // GAIA-based sign-in.
19 class GaiaScreen {
20 public:
21 GaiaScreen();
22 virtual ~GaiaScreen();
23 void SetHandler(LoginDisplayWebUIHandler* handler);
24
25 private:
26 LoginDisplayWebUIHandler* handler_;
27
28 DISALLOW_COPY_AND_ASSIGN(GaiaScreen);
29 };
30
31 } // namespace chromeos
32
33 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_GAIA_SCREEN_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/screens/core_oobe_actor.h ('k') | chrome/browser/chromeos/login/screens/gaia_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698