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 <map> | 5 #include <map> |
6 #include <set> | 6 #include <set> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "chrome/common/chrome_notification_types.h" | 33 #include "chrome/common/chrome_notification_types.h" |
34 #include "chrome/common/extensions/extension.h" | 34 #include "chrome/common/extensions/extension.h" |
35 #include "chrome/common/extensions/extension_manifest_constants.h" | 35 #include "chrome/common/extensions/extension_manifest_constants.h" |
36 #include "chrome/common/pref_names.h" | 36 #include "chrome/common/pref_names.h" |
37 #include "chrome/test/base/testing_profile.h" | 37 #include "chrome/test/base/testing_profile.h" |
38 #include "content/public/browser/notification_details.h" | 38 #include "content/public/browser/notification_details.h" |
39 #include "content/public/browser/notification_observer.h" | 39 #include "content/public/browser/notification_observer.h" |
40 #include "content/public/browser/notification_registrar.h" | 40 #include "content/public/browser/notification_registrar.h" |
41 #include "content/public/browser/notification_service.h" | 41 #include "content/public/browser/notification_service.h" |
42 #include "content/public/browser/notification_source.h" | 42 #include "content/public/browser/notification_source.h" |
43 #include "content/test/test_browser_thread.h" | 43 #include "content/public/test/test_browser_thread.h" |
44 #include "content/test/test_url_fetcher_factory.h" | 44 #include "content/test/test_url_fetcher_factory.h" |
45 #include "libxml/globals.h" | 45 #include "libxml/globals.h" |
46 #include "net/base/escape.h" | 46 #include "net/base/escape.h" |
47 #include "net/base/load_flags.h" | 47 #include "net/base/load_flags.h" |
48 #include "net/url_request/url_request_status.h" | 48 #include "net/url_request/url_request_status.h" |
49 #include "testing/gmock/include/gmock/gmock.h" | 49 #include "testing/gmock/include/gmock/gmock.h" |
50 #include "testing/gtest/include/gtest/gtest.h" | 50 #include "testing/gtest/include/gtest/gtest.h" |
51 | 51 |
52 using base::Time; | 52 using base::Time; |
53 using base::TimeDelta; | 53 using base::TimeDelta; |
(...skipping 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1505 // -prodversionmin (shouldn't update if browser version too old) | 1505 // -prodversionmin (shouldn't update if browser version too old) |
1506 // -manifests & updates arriving out of order / interleaved | 1506 // -manifests & updates arriving out of order / interleaved |
1507 // -malformed update url (empty, file://, has query, has a # fragment, etc.) | 1507 // -malformed update url (empty, file://, has query, has a # fragment, etc.) |
1508 // -An extension gets uninstalled while updates are in progress (so it doesn't | 1508 // -An extension gets uninstalled while updates are in progress (so it doesn't |
1509 // "come back from the dead") | 1509 // "come back from the dead") |
1510 // -An extension gets manually updated to v3 while we're downloading v2 (ie | 1510 // -An extension gets manually updated to v3 while we're downloading v2 (ie |
1511 // you don't get downgraded accidentally) | 1511 // you don't get downgraded accidentally) |
1512 // -An update manifest mentions multiple updates | 1512 // -An update manifest mentions multiple updates |
1513 | 1513 |
1514 } // namespace extensions | 1514 } // namespace extensions |
OLD | NEW |