| 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 #include "chrome/browser/ui/signin_view_controller.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 // Empty implementation on ChromeOS as this class should not be used on |
| 9 // ChromeOS. |
| 10 SigninViewController::SigninViewController() |
| 11 : signin_view_controller_delegate_(nullptr) {} |
| 12 |
| 13 SigninViewController::~SigninViewController() {} |
| 14 |
| 15 void SigninViewController::ShowModalSignin( |
| 16 profiles::BubbleViewMode mode, |
| 17 Browser* browser, |
| 18 signin_metrics::AccessPoint access_point) { |
| 19 NOTREACHED(); |
| 20 } |
| 21 |
| 22 void SigninViewController::ShowModalSyncConfirmationDialog(Browser* browser) { |
| 23 NOTREACHED(); |
| 24 } |
| 25 |
| 26 void SigninViewController::ShowModalSigninErrorDialog(Browser* browser) { |
| 27 NOTREACHED(); |
| 28 } |
| 29 |
| 30 void SigninViewController::CloseModalSignin() { |
| 31 NOTREACHED(); |
| 32 } |
| 33 |
| 34 void SigninViewController::SetModalSigninHeight(int height) { |
| 35 NOTREACHED(); |
| 36 } |
| 37 |
| 38 void SigninViewController::ResetModalSigninDelegate() { |
| 39 NOTREACHED(); |
| 40 } |
| 41 |
| 42 // static |
| 43 bool SigninViewController::ShouldShowModalSigninForMode( |
| 44 profiles::BubbleViewMode mode) { |
| 45 NOTREACHED(); |
| 46 return false; |
| 47 } |
| OLD | NEW |