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

Side by Side Diff: chrome/browser/extensions/extension_service.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 "chrome/browser/extensions/extension_service.h" 5 #include "chrome/browser/extensions/extension_service.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/file_util.h" 11 #include "base/file_util.h"
12 #include "base/metrics/histogram.h" 12 #include "base/metrics/histogram.h"
13 #include "base/stl_util-inl.h" 13 #include "base/stl_util-inl.h"
14 #include "base/string16.h" 14 #include "base/string16.h"
15 #include "base/string_number_conversions.h" 15 #include "base/string_number_conversions.h"
16 #include "base/string_util.h" 16 #include "base/string_util.h"
17 #include "base/stringprintf.h" 17 #include "base/stringprintf.h"
18 #include "base/thread_restrictions.h" 18 #include "base/threading/thread_restrictions.h"
19 #include "base/time.h" 19 #include "base/time.h"
20 #include "base/utf_string_conversions.h" 20 #include "base/utf_string_conversions.h"
21 #include "base/values.h" 21 #include "base/values.h"
22 #include "base/values_util.h" 22 #include "base/values_util.h"
23 #include "base/version.h" 23 #include "base/version.h"
24 #include "chrome/browser/browser_process.h" 24 #include "chrome/browser/browser_process.h"
25 #include "chrome/browser/themes/browser_theme_provider.h" 25 #include "chrome/browser/themes/browser_theme_provider.h"
26 #include "chrome/browser/browser_thread.h" 26 #include "chrome/browser/browser_thread.h"
27 #include "chrome/browser/debugger/devtools_manager.h" 27 #include "chrome/browser/debugger/devtools_manager.h"
28 #include "chrome/browser/dom_ui/shown_sections_handler.h" 28 #include "chrome/browser/dom_ui/shown_sections_handler.h"
(...skipping 2036 matching lines...) Expand 10 before | Expand all | Expand 10 after
2065 } 2065 }
2066 2066
2067 void ExtensionService::SetBeingUpgraded(const Extension* extension, 2067 void ExtensionService::SetBeingUpgraded(const Extension* extension,
2068 bool value) { 2068 bool value) {
2069 extension_runtime_data_[extension->id()].being_upgraded = value; 2069 extension_runtime_data_[extension->id()].being_upgraded = value;
2070 } 2070 }
2071 2071
2072 PropertyBag* ExtensionService::GetPropertyBag(const Extension* extension) { 2072 PropertyBag* ExtensionService::GetPropertyBag(const Extension* extension) {
2073 return &extension_runtime_data_[extension->id()].property_bag; 2073 return &extension_runtime_data_[extension->id()].property_bag;
2074 } 2074 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_rlz_module.cc ('k') | chrome/browser/extensions/extension_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698