| 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 CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 } | 42 } |
| 43 | 43 |
| 44 namespace base { | 44 namespace base { |
| 45 class FilePath; | 45 class FilePath; |
| 46 } | 46 } |
| 47 | 47 |
| 48 namespace content { | 48 namespace content { |
| 49 struct SpeechRecognitionSessionPreamble; | 49 struct SpeechRecognitionSessionPreamble; |
| 50 } | 50 } |
| 51 | 51 |
| 52 namespace gfx { | |
| 53 class ImageSkia; | |
| 54 } | |
| 55 | |
| 56 #if defined(USE_ASH) | 52 #if defined(USE_ASH) |
| 57 class AppSyncUIStateWatcher; | 53 class AppSyncUIStateWatcher; |
| 58 #endif | 54 #endif |
| 59 | 55 |
| 60 class AppListViewDelegate : public app_list::AppListViewDelegate, | 56 class AppListViewDelegate : public app_list::AppListViewDelegate, |
| 61 public app_list::StartPageObserver, | 57 public app_list::StartPageObserver, |
| 62 public HotwordClient, | 58 public HotwordClient, |
| 63 public ProfileAttributesStorage::Observer, | 59 public ProfileAttributesStorage::Observer, |
| 64 public SigninManagerBase::Observer, | 60 public SigninManagerBase::Observer, |
| 65 public SigninManagerFactory::Observer, | 61 public SigninManagerFactory::Observer, |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 // Window contents of additional custom launcher pages. | 195 // Window contents of additional custom launcher pages. |
| 200 ScopedVector<apps::CustomLauncherPageContents> custom_page_contents_; | 196 ScopedVector<apps::CustomLauncherPageContents> custom_page_contents_; |
| 201 | 197 |
| 202 // Registers for NOTIFICATION_APP_TERMINATING to unload custom launcher pages. | 198 // Registers for NOTIFICATION_APP_TERMINATING to unload custom launcher pages. |
| 203 content::NotificationRegistrar registrar_; | 199 content::NotificationRegistrar registrar_; |
| 204 | 200 |
| 205 DISALLOW_COPY_AND_ASSIGN(AppListViewDelegate); | 201 DISALLOW_COPY_AND_ASSIGN(AppListViewDelegate); |
| 206 }; | 202 }; |
| 207 | 203 |
| 208 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 204 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
| OLD | NEW |