| 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 18 matching lines...) Expand all Loading... |
| 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/extension_downloader.h" | 33 #include "chrome/browser/extensions/updater/extension_downloader.h" |
| 34 #include "chrome/browser/extensions/updater/extension_downloader_delegate.h" | 34 #include "chrome/browser/extensions/updater/extension_downloader_delegate.h" |
| 35 #include "chrome/browser/extensions/updater/extension_updater.h" | 35 #include "chrome/browser/extensions/updater/extension_updater.h" |
| 36 #include "chrome/browser/extensions/updater/manifest_fetch_data.h" | 36 #include "chrome/browser/extensions/updater/manifest_fetch_data.h" |
| 37 #include "chrome/browser/extensions/updater/request_queue_impl.h" | 37 #include "chrome/browser/extensions/updater/request_queue_impl.h" |
| 38 #include "chrome/browser/google/google_util.h" | 38 #include "chrome/browser/google/google_util.h" |
| 39 #include "chrome/browser/omaha_query_params/omaha_query_params.h" |
| 39 #include "chrome/browser/prefs/pref_service_syncable.h" | 40 #include "chrome/browser/prefs/pref_service_syncable.h" |
| 40 #include "chrome/common/omaha_query_params/omaha_query_params.h" | |
| 41 #include "chrome/common/pref_names.h" | 41 #include "chrome/common/pref_names.h" |
| 42 #include "chrome/test/base/testing_profile.h" | 42 #include "chrome/test/base/testing_profile.h" |
| 43 #include "content/public/browser/notification_details.h" | 43 #include "content/public/browser/notification_details.h" |
| 44 #include "content/public/browser/notification_observer.h" | 44 #include "content/public/browser/notification_observer.h" |
| 45 #include "content/public/browser/notification_registrar.h" | 45 #include "content/public/browser/notification_registrar.h" |
| 46 #include "content/public/browser/notification_service.h" | 46 #include "content/public/browser/notification_service.h" |
| 47 #include "content/public/browser/notification_source.h" | 47 #include "content/public/browser/notification_source.h" |
| 48 #include "content/public/test/test_browser_thread_bundle.h" | 48 #include "content/public/test/test_browser_thread_bundle.h" |
| 49 #include "content/public/test/test_utils.h" | 49 #include "content/public/test/test_utils.h" |
| 50 #include "extensions/browser/extension_registry.h" | 50 #include "extensions/browser/extension_registry.h" |
| (...skipping 1727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1778 // -prodversionmin (shouldn't update if browser version too old) | 1778 // -prodversionmin (shouldn't update if browser version too old) |
| 1779 // -manifests & updates arriving out of order / interleaved | 1779 // -manifests & updates arriving out of order / interleaved |
| 1780 // -malformed update url (empty, file://, has query, has a # fragment, etc.) | 1780 // -malformed update url (empty, file://, has query, has a # fragment, etc.) |
| 1781 // -An extension gets uninstalled while updates are in progress (so it doesn't | 1781 // -An extension gets uninstalled while updates are in progress (so it doesn't |
| 1782 // "come back from the dead") | 1782 // "come back from the dead") |
| 1783 // -An extension gets manually updated to v3 while we're downloading v2 (ie | 1783 // -An extension gets manually updated to v3 while we're downloading v2 (ie |
| 1784 // you don't get downgraded accidentally) | 1784 // you don't get downgraded accidentally) |
| 1785 // -An update manifest mentions multiple updates | 1785 // -An update manifest mentions multiple updates |
| 1786 | 1786 |
| 1787 } // namespace extensions | 1787 } // namespace extensions |
| OLD | NEW |