Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_APP_LIST_VIEW_DELEGATE_H_ | 5 #ifndef UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
| 6 #define UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 6 #define UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/string16.h" | 8 #include "base/string16.h" |
| 9 #include "ui/app_list/app_list_export.h" | 9 #include "ui/app_list/app_list_export.h" |
| 10 | 10 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 68 | 68 |
| 69 // Returns the name of the current user. | 69 // Returns the name of the current user. |
| 70 virtual string16 GetCurrentUserName() = 0; | 70 virtual string16 GetCurrentUserName() = 0; |
| 71 | 71 |
| 72 // Returns the email of the current user. | 72 // Returns the email of the current user. |
| 73 virtual string16 GetCurrentUserEmail() = 0; | 73 virtual string16 GetCurrentUserEmail() = 0; |
| 74 | 74 |
| 75 // Open the settings UI. | 75 // Open the settings UI. |
| 76 virtual void OpenSettings() = 0; | 76 virtual void OpenSettings() = 0; |
| 77 | 77 |
| 78 // Open the help UI | |
|
benwells
2013/04/10 03:46:44
Nit: '.' at end of comment.
calamity
2013/04/10 04:00:40
Done.
| |
| 79 virtual void OpenHelp() = 0; | |
| 80 | |
| 78 // Open the feedback UI. | 81 // Open the feedback UI. |
| 79 virtual void OpenFeedback() = 0; | 82 virtual void OpenFeedback() = 0; |
| 80 }; | 83 }; |
| 81 | 84 |
| 82 } // namespace app_list | 85 } // namespace app_list |
| 83 | 86 |
| 84 #endif // UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 87 #endif // UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
| OLD | NEW |