| 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_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_PER_APP_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_PER_APP_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_PER_APP_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_PER_APP_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 virtual void LauncherItemChanged(int index, | 241 virtual void LauncherItemChanged(int index, |
| 242 const ash::LauncherItem& old_item) OVERRIDE; | 242 const ash::LauncherItem& old_item) OVERRIDE; |
| 243 virtual void LauncherStatusChanged() OVERRIDE; | 243 virtual void LauncherStatusChanged() OVERRIDE; |
| 244 | 244 |
| 245 // Overridden from content::NotificationObserver: | 245 // Overridden from content::NotificationObserver: |
| 246 virtual void Observe(int type, | 246 virtual void Observe(int type, |
| 247 const content::NotificationSource& source, | 247 const content::NotificationSource& source, |
| 248 const content::NotificationDetails& details) OVERRIDE; | 248 const content::NotificationDetails& details) OVERRIDE; |
| 249 | 249 |
| 250 // Overridden from ash::ShellObserver: | 250 // Overridden from ash::ShellObserver: |
| 251 virtual void OnShelfAlignmentChanged() OVERRIDE; | 251 virtual void OnShelfAlignmentChanged(aura::RootWindow* root_window) OVERRIDE; |
| 252 | 252 |
| 253 // Overridden from PrefServiceObserver: | 253 // Overridden from PrefServiceObserver: |
| 254 virtual void OnIsSyncingChanged() OVERRIDE; | 254 virtual void OnIsSyncingChanged() OVERRIDE; |
| 255 | 255 |
| 256 // Overridden from AppSyncUIStateObserver | 256 // Overridden from AppSyncUIStateObserver |
| 257 virtual void OnAppSyncUIStatusChanged() OVERRIDE; | 257 virtual void OnAppSyncUIStatusChanged() OVERRIDE; |
| 258 | 258 |
| 259 protected: | 259 protected: |
| 260 // ChromeLauncherController overrides: | 260 // ChromeLauncherController overrides: |
| 261 | 261 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 content::NotificationRegistrar notification_registrar_; | 344 content::NotificationRegistrar notification_registrar_; |
| 345 | 345 |
| 346 PrefChangeRegistrar pref_change_registrar_; | 346 PrefChangeRegistrar pref_change_registrar_; |
| 347 | 347 |
| 348 AppSyncUIState* app_sync_ui_state_; | 348 AppSyncUIState* app_sync_ui_state_; |
| 349 | 349 |
| 350 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherControllerPerApp); | 350 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherControllerPerApp); |
| 351 }; | 351 }; |
| 352 | 352 |
| 353 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_PER_APP_H_ | 353 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CHROME_LAUNCHER_CONTROLLER_PER_APP_H_ |
| OLD | NEW |