| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include "content/public/browser/notification_registrar.h" | 46 #include "content/public/browser/notification_registrar.h" |
| 47 #include "content/public/browser/notification_service.h" | 47 #include "content/public/browser/notification_service.h" |
| 48 #include "content/public/browser/notification_source.h" | 48 #include "content/public/browser/notification_source.h" |
| 49 #include "content/public/test/test_browser_thread_bundle.h" | 49 #include "content/public/test/test_browser_thread_bundle.h" |
| 50 #include "content/public/test/test_utils.h" | 50 #include "content/public/test/test_utils.h" |
| 51 #include "extensions/browser/extension_prefs.h" | 51 #include "extensions/browser/extension_prefs.h" |
| 52 #include "extensions/browser/extension_registry.h" | 52 #include "extensions/browser/extension_registry.h" |
| 53 #include "extensions/browser/extension_system.h" | 53 #include "extensions/browser/extension_system.h" |
| 54 #include "extensions/browser/updater/manifest_fetch_data.h" | 54 #include "extensions/browser/updater/manifest_fetch_data.h" |
| 55 #include "extensions/common/extension.h" | 55 #include "extensions/common/extension.h" |
| 56 #include "extensions/common/extension_urls.h" |
| 56 #include "extensions/common/manifest_constants.h" | 57 #include "extensions/common/manifest_constants.h" |
| 57 #include "google_apis/gaia/fake_identity_provider.h" | 58 #include "google_apis/gaia/fake_identity_provider.h" |
| 58 #include "google_apis/gaia/fake_oauth2_token_service.h" | 59 #include "google_apis/gaia/fake_oauth2_token_service.h" |
| 59 #include "libxml/globals.h" | 60 #include "libxml/globals.h" |
| 60 #include "net/base/backoff_entry.h" | 61 #include "net/base/backoff_entry.h" |
| 61 #include "net/base/escape.h" | 62 #include "net/base/escape.h" |
| 62 #include "net/base/load_flags.h" | 63 #include "net/base/load_flags.h" |
| 63 #include "net/http/http_request_headers.h" | 64 #include "net/http/http_request_headers.h" |
| 64 #include "net/url_request/test_url_fetcher_factory.h" | 65 #include "net/url_request/test_url_fetcher_factory.h" |
| 65 #include "net/url_request/url_request_status.h" | 66 #include "net/url_request/url_request_status.h" |
| (...skipping 2000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2066 // -prodversionmin (shouldn't update if browser version too old) | 2067 // -prodversionmin (shouldn't update if browser version too old) |
| 2067 // -manifests & updates arriving out of order / interleaved | 2068 // -manifests & updates arriving out of order / interleaved |
| 2068 // -malformed update url (empty, file://, has query, has a # fragment, etc.) | 2069 // -malformed update url (empty, file://, has query, has a # fragment, etc.) |
| 2069 // -An extension gets uninstalled while updates are in progress (so it doesn't | 2070 // -An extension gets uninstalled while updates are in progress (so it doesn't |
| 2070 // "come back from the dead") | 2071 // "come back from the dead") |
| 2071 // -An extension gets manually updated to v3 while we're downloading v2 (ie | 2072 // -An extension gets manually updated to v3 while we're downloading v2 (ie |
| 2072 // you don't get downgraded accidentally) | 2073 // you don't get downgraded accidentally) |
| 2073 // -An update manifest mentions multiple updates | 2074 // -An update manifest mentions multiple updates |
| 2074 | 2075 |
| 2075 } // namespace extensions | 2076 } // namespace extensions |
| OLD | NEW |