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

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

Issue 2710673003: cros: Remove usage of GaiaScreenHandler outside of login/webui. (Closed)
Patch Set: Initial upload Created 3 years, 10 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
OLDNEW
(Empty)
1 // Copyright 2017 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_VIEW_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_GAIA_VIEW_H_
7
8 #include <string>
9
10 #include "base/bind.h"
11 #include "base/compiler_specific.h"
12 #include "base/macros.h"
13
14 namespace chromeos {
15
16 class GaiaView {
17 public:
18 GaiaView() = default;
19 virtual ~GaiaView() = default;
20
21 // Decides whether an auth extension should be pre-loaded. If it should,
22 // pre-loads it.
23 virtual void MaybePreloadAuthExtension() = 0;
24
25 virtual void DisableRestrictiveProxyCheckForTest() = 0;
26
27 private:
28 DISALLOW_COPY_AND_ASSIGN(GaiaView);
29 };
30
31 } // namespace chromeos
32
33 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_GAIA_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/screens/gaia_screen.cc ('k') | chrome/browser/chromeos/login/signin_screen_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698