| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_UI_SIGNIN_VIEW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_SIGNIN_VIEW_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_SIGNIN_VIEW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_SIGNIN_VIEW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "chrome/browser/ui/profile_chooser_constants.h" | 9 #include "chrome/browser/ui/profile_chooser_constants.h" |
| 10 | 10 |
| 11 class Browser; | 11 class Browser; |
| 12 class SigninViewControllerDelegate; | 12 class SigninViewControllerDelegate; |
| 13 class Profile; | |
| 14 | 13 |
| 15 namespace signin_metrics { | 14 namespace signin_metrics { |
| 16 enum class AccessPoint; | 15 enum class AccessPoint; |
| 17 } | 16 } |
| 18 | 17 |
| 19 // Class responsible for showing and hiding the Signin and Sync Confirmation | 18 // Class responsible for showing and hiding the Signin and Sync Confirmation |
| 20 // tab-modal dialogs. | 19 // tab-modal dialogs. |
| 21 class SigninViewController { | 20 class SigninViewController { |
| 22 public: | 21 public: |
| 23 SigninViewController(); | 22 SigninViewController(); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 51 return signin_view_controller_delegate_; | 50 return signin_view_controller_delegate_; |
| 52 } | 51 } |
| 53 | 52 |
| 54 private: | 53 private: |
| 55 SigninViewControllerDelegate* signin_view_controller_delegate_; | 54 SigninViewControllerDelegate* signin_view_controller_delegate_; |
| 56 | 55 |
| 57 DISALLOW_COPY_AND_ASSIGN(SigninViewController); | 56 DISALLOW_COPY_AND_ASSIGN(SigninViewController); |
| 58 }; | 57 }; |
| 59 | 58 |
| 60 #endif // CHROME_BROWSER_UI_SIGNIN_VIEW_CONTROLLER_H_ | 59 #endif // CHROME_BROWSER_UI_SIGNIN_VIEW_CONTROLLER_H_ |
| OLD | NEW |