| OLD | NEW |
| (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_ |
| OLD | NEW |