| 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 #include "chrome/browser/extensions/updater/extension_updater.h" | 5 #include "chrome/browser/extensions/updater/extension_updater.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <list> | 10 #include <list> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "chrome/browser/extensions/extension_sync_data.h" | 38 #include "chrome/browser/extensions/extension_sync_data.h" |
| 39 #include "chrome/browser/extensions/test_extension_prefs.h" | 39 #include "chrome/browser/extensions/test_extension_prefs.h" |
| 40 #include "chrome/browser/extensions/test_extension_service.h" | 40 #include "chrome/browser/extensions/test_extension_service.h" |
| 41 #include "chrome/browser/extensions/test_extension_system.h" | 41 #include "chrome/browser/extensions/test_extension_system.h" |
| 42 #include "chrome/browser/extensions/updater/chrome_extension_downloader_factory.
h" | 42 #include "chrome/browser/extensions/updater/chrome_extension_downloader_factory.
h" |
| 43 #include "chrome/browser/google/google_brand.h" | 43 #include "chrome/browser/google/google_brand.h" |
| 44 #include "chrome/test/base/scoped_testing_local_state.h" | 44 #include "chrome/test/base/scoped_testing_local_state.h" |
| 45 #include "chrome/test/base/testing_browser_process.h" | 45 #include "chrome/test/base/testing_browser_process.h" |
| 46 #include "chrome/test/base/testing_profile.h" | 46 #include "chrome/test/base/testing_profile.h" |
| 47 #include "components/crx_file/id_util.h" | 47 #include "components/crx_file/id_util.h" |
| 48 #include "components/syncable_prefs/pref_service_syncable.h" | 48 #include "components/sync_preferences/pref_service_syncable.h" |
| 49 #include "components/update_client/update_query_params.h" | 49 #include "components/update_client/update_query_params.h" |
| 50 #include "content/public/browser/notification_details.h" | 50 #include "content/public/browser/notification_details.h" |
| 51 #include "content/public/browser/notification_observer.h" | 51 #include "content/public/browser/notification_observer.h" |
| 52 #include "content/public/browser/notification_registrar.h" | 52 #include "content/public/browser/notification_registrar.h" |
| 53 #include "content/public/browser/notification_service.h" | 53 #include "content/public/browser/notification_service.h" |
| 54 #include "content/public/browser/notification_source.h" | 54 #include "content/public/browser/notification_source.h" |
| 55 #include "content/public/test/test_browser_thread_bundle.h" | 55 #include "content/public/test/test_browser_thread_bundle.h" |
| 56 #include "content/public/test/test_utils.h" | 56 #include "content/public/test/test_utils.h" |
| 57 #include "extensions/browser/extension_prefs.h" | 57 #include "extensions/browser/extension_prefs.h" |
| 58 #include "extensions/browser/extension_registry.h" | 58 #include "extensions/browser/extension_registry.h" |
| (...skipping 2204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2263 // -prodversionmin (shouldn't update if browser version too old) | 2263 // -prodversionmin (shouldn't update if browser version too old) |
| 2264 // -manifests & updates arriving out of order / interleaved | 2264 // -manifests & updates arriving out of order / interleaved |
| 2265 // -malformed update url (empty, file://, has query, has a # fragment, etc.) | 2265 // -malformed update url (empty, file://, has query, has a # fragment, etc.) |
| 2266 // -An extension gets uninstalled while updates are in progress (so it doesn't | 2266 // -An extension gets uninstalled while updates are in progress (so it doesn't |
| 2267 // "come back from the dead") | 2267 // "come back from the dead") |
| 2268 // -An extension gets manually updated to v3 while we're downloading v2 (ie | 2268 // -An extension gets manually updated to v3 while we're downloading v2 (ie |
| 2269 // you don't get downgraded accidentally) | 2269 // you don't get downgraded accidentally) |
| 2270 // -An update manifest mentions multiple updates | 2270 // -An update manifest mentions multiple updates |
| 2271 | 2271 |
| 2272 } // namespace extensions | 2272 } // namespace extensions |
| OLD | NEW |