OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/scoped_ptr.h" | 8 #include "base/scoped_ptr.h" |
9 #include "base/stl_util-inl.h" | 9 #include "base/stl_util-inl.h" |
10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
11 #include "base/string_split.h" | 11 #include "base/string_split.h" |
12 #include "base/string_util.h" | 12 #include "base/string_util.h" |
13 #include "base/stringprintf.h" | 13 #include "base/stringprintf.h" |
14 #include "base/thread.h" | 14 #include "base/threading/thread.h" |
15 #include "base/version.h" | 15 #include "base/version.h" |
16 #include "chrome/browser/browser_thread.h" | 16 #include "chrome/browser/browser_thread.h" |
17 #include "chrome/browser/extensions/extension_error_reporter.h" | 17 #include "chrome/browser/extensions/extension_error_reporter.h" |
18 #include "chrome/browser/extensions/extension_updater.h" | 18 #include "chrome/browser/extensions/extension_updater.h" |
19 #include "chrome/browser/extensions/extension_service.h" | 19 #include "chrome/browser/extensions/extension_service.h" |
20 #include "chrome/browser/extensions/test_extension_prefs.h" | 20 #include "chrome/browser/extensions/test_extension_prefs.h" |
21 #include "chrome/browser/prefs/pref_service.h" | 21 #include "chrome/browser/prefs/pref_service.h" |
22 #include "chrome/common/extensions/extension.h" | 22 #include "chrome/common/extensions/extension.h" |
23 #include "chrome/common/extensions/extension_constants.h" | 23 #include "chrome/common/extensions/extension_constants.h" |
24 #include "chrome/common/pref_names.h" | 24 #include "chrome/common/pref_names.h" |
(...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1064 // -prodversionmin (shouldn't update if browser version too old) | 1064 // -prodversionmin (shouldn't update if browser version too old) |
1065 // -manifests & updates arriving out of order / interleaved | 1065 // -manifests & updates arriving out of order / interleaved |
1066 // -Profile::GetDefaultRequestContext() returning null | 1066 // -Profile::GetDefaultRequestContext() returning null |
1067 // (should not crash, but just do check later) | 1067 // (should not crash, but just do check later) |
1068 // -malformed update url (empty, file://, has query, has a # fragment, etc.) | 1068 // -malformed update url (empty, file://, has query, has a # fragment, etc.) |
1069 // -An extension gets uninstalled while updates are in progress (so it doesn't | 1069 // -An extension gets uninstalled while updates are in progress (so it doesn't |
1070 // "come back from the dead") | 1070 // "come back from the dead") |
1071 // -An extension gets manually updated to v3 while we're downloading v2 (ie | 1071 // -An extension gets manually updated to v3 while we're downloading v2 (ie |
1072 // you don't get downgraded accidentally) | 1072 // you don't get downgraded accidentally) |
1073 // -An update manifest mentions multiple updates | 1073 // -An update manifest mentions multiple updates |
OLD | NEW |