| 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_SYNC_TEST_INTEGRATION_APPS_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_APPS_HELPER_H_ |
| 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_APPS_HELPER_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_APPS_HELPER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/browser/sync/test/integration/status_change_checker.h" | 12 #include "chrome/browser/sync/test/integration/status_change_checker.h" |
| 13 #include "chrome/browser/sync/test/integration/sync_test.h" | 13 #include "chrome/browser/sync/test/integration/sync_test.h" |
| 14 #include "components/sync/api/string_ordinal.h" | 14 #include "components/sync/model/string_ordinal.h" |
| 15 #include "content/public/browser/notification_observer.h" | 15 #include "content/public/browser/notification_observer.h" |
| 16 #include "content/public/browser/notification_registrar.h" | 16 #include "content/public/browser/notification_registrar.h" |
| 17 #include "extensions/browser/extension_prefs_observer.h" | 17 #include "extensions/browser/extension_prefs_observer.h" |
| 18 #include "extensions/browser/extension_registry_observer.h" | 18 #include "extensions/browser/extension_registry_observer.h" |
| 19 | 19 |
| 20 class Profile; | 20 class Profile; |
| 21 class SyncedExtensionInstaller; | 21 class SyncedExtensionInstaller; |
| 22 | 22 |
| 23 namespace apps_helper { | 23 namespace apps_helper { |
| 24 | 24 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 | 152 |
| 153 content::NotificationRegistrar registrar_; | 153 content::NotificationRegistrar registrar_; |
| 154 | 154 |
| 155 // This installs apps, too. | 155 // This installs apps, too. |
| 156 ScopedVector<SyncedExtensionInstaller> synced_extension_installers_; | 156 ScopedVector<SyncedExtensionInstaller> synced_extension_installers_; |
| 157 | 157 |
| 158 DISALLOW_COPY_AND_ASSIGN(AppsMatchChecker); | 158 DISALLOW_COPY_AND_ASSIGN(AppsMatchChecker); |
| 159 }; | 159 }; |
| 160 | 160 |
| 161 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_APPS_HELPER_H_ | 161 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_APPS_HELPER_H_ |
| OLD | NEW |