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

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

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 years, 7 months 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 "chrome/browser/extensions/updater/extension_updater.h" 5 #include "chrome/browser/extensions/updater/extension_updater.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <list> 10 #include <list>
(...skipping 10 matching lines...) Expand all
21 #include "base/macros.h" 21 #include "base/macros.h"
22 #include "base/memory/weak_ptr.h" 22 #include "base/memory/weak_ptr.h"
23 #include "base/message_loop/message_loop.h" 23 #include "base/message_loop/message_loop.h"
24 #include "base/run_loop.h" 24 #include "base/run_loop.h"
25 #include "base/sequenced_task_runner.h" 25 #include "base/sequenced_task_runner.h"
26 #include "base/stl_util.h" 26 #include "base/stl_util.h"
27 #include "base/strings/string_number_conversions.h" 27 #include "base/strings/string_number_conversions.h"
28 #include "base/strings/string_split.h" 28 #include "base/strings/string_split.h"
29 #include "base/strings/string_util.h" 29 #include "base/strings/string_util.h"
30 #include "base/strings/stringprintf.h" 30 #include "base/strings/stringprintf.h"
31 #include "base/thread_task_runner_handle.h"
32 #include "base/threading/thread.h" 31 #include "base/threading/thread.h"
32 #include "base/threading/thread_task_runner_handle.h"
33 #include "base/version.h" 33 #include "base/version.h"
34 #include "build/build_config.h" 34 #include "build/build_config.h"
35 #include "chrome/browser/chrome_notification_types.h" 35 #include "chrome/browser/chrome_notification_types.h"
36 #include "chrome/browser/extensions/crx_installer.h" 36 #include "chrome/browser/extensions/crx_installer.h"
37 #include "chrome/browser/extensions/extension_error_reporter.h" 37 #include "chrome/browser/extensions/extension_error_reporter.h"
38 #include "chrome/browser/extensions/extension_sync_data.h" 38 #include "chrome/browser/extensions/extension_sync_data.h"
39 #include "chrome/browser/extensions/test_extension_prefs.h" 39 #include "chrome/browser/extensions/test_extension_prefs.h"
40 #include "chrome/browser/extensions/test_extension_service.h" 40 #include "chrome/browser/extensions/test_extension_service.h"
41 #include "chrome/browser/extensions/test_extension_system.h" 41 #include "chrome/browser/extensions/test_extension_system.h"
42 #include "chrome/browser/extensions/updater/chrome_extension_downloader_factory. h" 42 #include "chrome/browser/extensions/updater/chrome_extension_downloader_factory. h"
(...skipping 2219 matching lines...) Expand 10 before | Expand all | Expand 10 after
2262 // -prodversionmin (shouldn't update if browser version too old) 2262 // -prodversionmin (shouldn't update if browser version too old)
2263 // -manifests & updates arriving out of order / interleaved 2263 // -manifests & updates arriving out of order / interleaved
2264 // -malformed update url (empty, file://, has query, has a # fragment, etc.) 2264 // -malformed update url (empty, file://, has query, has a # fragment, etc.)
2265 // -An extension gets uninstalled while updates are in progress (so it doesn't 2265 // -An extension gets uninstalled while updates are in progress (so it doesn't
2266 // "come back from the dead") 2266 // "come back from the dead")
2267 // -An extension gets manually updated to v3 while we're downloading v2 (ie 2267 // -An extension gets manually updated to v3 while we're downloading v2 (ie
2268 // you don't get downgraded accidentally) 2268 // you don't get downgraded accidentally)
2269 // -An update manifest mentions multiple updates 2269 // -An update manifest mentions multiple updates
2270 2270
2271 } // namespace extensions 2271 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/test_extension_prefs.cc ('k') | chrome/browser/extensions/zipfile_installer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698