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 <list> | 5 #include <list> |
6 #include <map> | 6 #include <map> |
7 #include <set> | 7 #include <set> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "chrome/browser/extensions/crx_installer.h" | 27 #include "chrome/browser/extensions/crx_installer.h" |
28 #include "chrome/browser/extensions/extension_error_reporter.h" | 28 #include "chrome/browser/extensions/extension_error_reporter.h" |
29 #include "chrome/browser/extensions/extension_sync_data.h" | 29 #include "chrome/browser/extensions/extension_sync_data.h" |
30 #include "chrome/browser/extensions/test_extension_prefs.h" | 30 #include "chrome/browser/extensions/test_extension_prefs.h" |
31 #include "chrome/browser/extensions/test_extension_service.h" | 31 #include "chrome/browser/extensions/test_extension_service.h" |
32 #include "chrome/browser/extensions/test_extension_system.h" | 32 #include "chrome/browser/extensions/test_extension_system.h" |
33 #include "chrome/browser/extensions/updater/chrome_extension_downloader_factory.
h" | 33 #include "chrome/browser/extensions/updater/chrome_extension_downloader_factory.
h" |
34 #include "chrome/browser/extensions/updater/extension_updater.h" | 34 #include "chrome/browser/extensions/updater/extension_updater.h" |
35 #include "chrome/browser/google/google_brand.h" | 35 #include "chrome/browser/google/google_brand.h" |
36 #include "chrome/browser/prefs/pref_service_syncable.h" | 36 #include "chrome/browser/prefs/pref_service_syncable.h" |
37 #include "chrome/common/pref_names.h" | |
38 #include "chrome/test/base/testing_profile.h" | 37 #include "chrome/test/base/testing_profile.h" |
39 #include "components/crx_file/id_util.h" | 38 #include "components/crx_file/id_util.h" |
40 #include "components/omaha_query_params/omaha_query_params.h" | 39 #include "components/omaha_query_params/omaha_query_params.h" |
41 #include "content/public/browser/notification_details.h" | 40 #include "content/public/browser/notification_details.h" |
42 #include "content/public/browser/notification_observer.h" | 41 #include "content/public/browser/notification_observer.h" |
43 #include "content/public/browser/notification_registrar.h" | 42 #include "content/public/browser/notification_registrar.h" |
44 #include "content/public/browser/notification_service.h" | 43 #include "content/public/browser/notification_service.h" |
45 #include "content/public/browser/notification_source.h" | 44 #include "content/public/browser/notification_source.h" |
46 #include "content/public/test/test_browser_thread_bundle.h" | 45 #include "content/public/test/test_browser_thread_bundle.h" |
47 #include "content/public/test/test_utils.h" | 46 #include "content/public/test/test_utils.h" |
(...skipping 2212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2260 // -prodversionmin (shouldn't update if browser version too old) | 2259 // -prodversionmin (shouldn't update if browser version too old) |
2261 // -manifests & updates arriving out of order / interleaved | 2260 // -manifests & updates arriving out of order / interleaved |
2262 // -malformed update url (empty, file://, has query, has a # fragment, etc.) | 2261 // -malformed update url (empty, file://, has query, has a # fragment, etc.) |
2263 // -An extension gets uninstalled while updates are in progress (so it doesn't | 2262 // -An extension gets uninstalled while updates are in progress (so it doesn't |
2264 // "come back from the dead") | 2263 // "come back from the dead") |
2265 // -An extension gets manually updated to v3 while we're downloading v2 (ie | 2264 // -An extension gets manually updated to v3 while we're downloading v2 (ie |
2266 // you don't get downgraded accidentally) | 2265 // you don't get downgraded accidentally) |
2267 // -An update manifest mentions multiple updates | 2266 // -An update manifest mentions multiple updates |
2268 | 2267 |
2269 } // namespace extensions | 2268 } // namespace extensions |
OLD | NEW |