| 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 APPS_APP_RESTORE_SERVICE_H_ | 5 #ifndef APPS_APP_RESTORE_SERVICE_H_ |
| 6 #define APPS_APP_RESTORE_SERVICE_H_ | 6 #define APPS_APP_RESTORE_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "apps/app_lifetime_monitor.h" | 11 #include "apps/app_lifetime_monitor.h" |
| 12 #include "apps/app_window_registry.h" | |
| 13 #include "components/keyed_service/core/keyed_service.h" | 12 #include "components/keyed_service/core/keyed_service.h" |
| 13 #include "extensions/browser/app_window/app_window_registry.h" |
| 14 | 14 |
| 15 namespace extensions { | 15 namespace extensions { |
| 16 class Extension; | 16 class Extension; |
| 17 } | 17 } |
| 18 | 18 |
| 19 class Profile; | 19 class Profile; |
| 20 | 20 |
| 21 namespace apps { | 21 namespace apps { |
| 22 | 22 |
| 23 // Tracks what apps need to be restarted when the browser restarts. | 23 // Tracks what apps need to be restarted when the browser restarts. |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 void StopObservingAppLifetime(); | 63 void StopObservingAppLifetime(); |
| 64 | 64 |
| 65 Profile* profile_; | 65 Profile* profile_; |
| 66 | 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(AppRestoreService); | 67 DISALLOW_COPY_AND_ASSIGN(AppRestoreService); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace apps | 70 } // namespace apps |
| 71 | 71 |
| 72 #endif // APPS_APP_RESTORE_SERVICE_H_ | 72 #endif // APPS_APP_RESTORE_SERVICE_H_ |
| OLD | NEW |