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

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

Issue 6028009: Move base/thread.h to base/threading, fix up callers to use the new location.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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) 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
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
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_updater.cc ('k') | chrome/browser/extensions/extensions_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698