Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(656)

Side by Side Diff: chrome/browser/extensions/updater/extension_updater_unittest.cc

Issue 674273002: Cleanup: Remove unneeded chrome/common/pref_names.h includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698