Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 UI_APP_LIST_SIGNIN_DELEGATE_H_ | 5 #ifndef UI_APP_LIST_SIGNIN_DELEGATE_H_ |
| 6 #define UI_APP_LIST_SIGNIN_DELEGATE_H_ | 6 #define UI_APP_LIST_SIGNIN_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| 11 #include "ui/app_list/app_list_export.h" | 11 #include "ui/app_list/app_list_export.h" |
| 12 | 12 |
| 13 namespace base { | |
| 14 class FilePath; | |
|
koz (OOO until 15th September)
2013/08/08 06:25:02
Do you still need to add this?
calamity
2013/08/09 09:10:57
Removed.
| |
| 15 } | |
| 16 | |
| 13 namespace app_list { | 17 namespace app_list { |
| 14 | 18 |
| 15 class SigninDelegateObserver; | 19 class SigninDelegateObserver; |
| 16 | 20 |
| 17 class APP_LIST_EXPORT SigninDelegate { | 21 class APP_LIST_EXPORT SigninDelegate { |
| 18 public: | 22 public: |
| 19 SigninDelegate(); | 23 SigninDelegate(); |
| 20 virtual ~SigninDelegate(); | 24 virtual ~SigninDelegate(); |
| 21 | 25 |
| 22 virtual bool NeedSignin() = 0; | 26 virtual bool NeedSignin() = 0; |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 38 | 42 |
| 39 private: | 43 private: |
| 40 ObserverList<SigninDelegateObserver, true> observers_; | 44 ObserverList<SigninDelegateObserver, true> observers_; |
| 41 | 45 |
| 42 DISALLOW_COPY_AND_ASSIGN(SigninDelegate); | 46 DISALLOW_COPY_AND_ASSIGN(SigninDelegate); |
| 43 }; | 47 }; |
| 44 | 48 |
| 45 } // namespace app_list | 49 } // namespace app_list |
| 46 | 50 |
| 47 #endif // UI_APP_LIST_SIGNIN_DELEGATE_H_ | 51 #endif // UI_APP_LIST_SIGNIN_DELEGATE_H_ |
| OLD | NEW |