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

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

Issue 12378016: chrome: Update include paths of string_split.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
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"
11 #include "base/bind_helpers.h" 11 #include "base/bind_helpers.h"
12 #include "base/command_line.h" 12 #include "base/command_line.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/file_util.h" 14 #include "base/file_util.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
17 #include "base/message_loop.h" 17 #include "base/message_loop.h"
18 #include "base/run_loop.h" 18 #include "base/run_loop.h"
19 #include "base/sequenced_task_runner.h" 19 #include "base/sequenced_task_runner.h"
20 #include "base/stl_util.h" 20 #include "base/stl_util.h"
21 #include "base/string_split.h"
22 #include "base/string_util.h" 21 #include "base/string_util.h"
23 #include "base/stringprintf.h" 22 #include "base/stringprintf.h"
24 #include "base/strings/string_number_conversions.h" 23 #include "base/strings/string_number_conversions.h"
24 #include "base/strings/string_split.h"
25 #include "base/threading/thread.h" 25 #include "base/threading/thread.h"
26 #include "base/version.h" 26 #include "base/version.h"
27 #include "chrome/browser/extensions/blacklist.h" 27 #include "chrome/browser/extensions/blacklist.h"
28 #include "chrome/browser/extensions/crx_installer.h" 28 #include "chrome/browser/extensions/crx_installer.h"
29 #include "chrome/browser/extensions/extension_error_reporter.h" 29 #include "chrome/browser/extensions/extension_error_reporter.h"
30 #include "chrome/browser/extensions/extension_sync_data.h" 30 #include "chrome/browser/extensions/extension_sync_data.h"
31 #include "chrome/browser/extensions/extension_system.h" 31 #include "chrome/browser/extensions/extension_system.h"
32 #include "chrome/browser/extensions/test_blacklist.h" 32 #include "chrome/browser/extensions/test_blacklist.h"
33 #include "chrome/browser/extensions/test_extension_prefs.h" 33 #include "chrome/browser/extensions/test_extension_prefs.h"
34 #include "chrome/browser/extensions/test_extension_service.h" 34 #include "chrome/browser/extensions/test_extension_service.h"
(...skipping 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after
1694 // -prodversionmin (shouldn't update if browser version too old) 1694 // -prodversionmin (shouldn't update if browser version too old)
1695 // -manifests & updates arriving out of order / interleaved 1695 // -manifests & updates arriving out of order / interleaved
1696 // -malformed update url (empty, file://, has query, has a # fragment, etc.) 1696 // -malformed update url (empty, file://, has query, has a # fragment, etc.)
1697 // -An extension gets uninstalled while updates are in progress (so it doesn't 1697 // -An extension gets uninstalled while updates are in progress (so it doesn't
1698 // "come back from the dead") 1698 // "come back from the dead")
1699 // -An extension gets manually updated to v3 while we're downloading v2 (ie 1699 // -An extension gets manually updated to v3 while we're downloading v2 (ie
1700 // you don't get downgraded accidentally) 1700 // you don't get downgraded accidentally)
1701 // -An update manifest mentions multiple updates 1701 // -An update manifest mentions multiple updates
1702 1702
1703 } // namespace extensions 1703 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/updater/extension_updater.cc ('k') | chrome/browser/file_select_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698