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

Side by Side Diff: chrome_frame/utils.cc

Issue 5986012: Move thread local stuff from base to base/threading and consistently use the... (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
« no previous file with comments | « chrome_frame/urlmon_moniker.h ('k') | net/base/dns_reload_timer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_frame/utils.h" 5 #include "chrome_frame/utils.h"
6 6
7 #include <htiframe.h> 7 #include <htiframe.h>
8 #include <mshtml.h> 8 #include <mshtml.h>
9 #include <shlobj.h> 9 #include <shlobj.h>
10 10
11 #include <atlsecurity.h> 11 #include <atlsecurity.h>
12 12
13 #include "base/file_util.h" 13 #include "base/file_util.h"
14 #include "base/file_version_info.h" 14 #include "base/file_version_info.h"
15 #include "base/lazy_instance.h" 15 #include "base/lazy_instance.h"
16 #include "base/lock.h" 16 #include "base/lock.h"
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/path_service.h" 18 #include "base/path_service.h"
19 #include "base/string_number_conversions.h" 19 #include "base/string_number_conversions.h"
20 #include "base/string_tokenizer.h" 20 #include "base/string_tokenizer.h"
21 #include "base/string_util.h" 21 #include "base/string_util.h"
22 #include "base/stringprintf.h" 22 #include "base/stringprintf.h"
23 #include "base/thread_local.h" 23 #include "base/threading/thread_local.h"
24 #include "base/utf_string_conversions.h" 24 #include "base/utf_string_conversions.h"
25 #include "base/win/registry.h" 25 #include "base/win/registry.h"
26 #include "base/win/scoped_bstr.h" 26 #include "base/win/scoped_bstr.h"
27 #include "base/win/scoped_comptr.h" 27 #include "base/win/scoped_comptr.h"
28 #include "base/win/scoped_variant.h" 28 #include "base/win/scoped_variant.h"
29 #include "chrome/common/chrome_paths_internal.h" 29 #include "chrome/common/chrome_paths_internal.h"
30 #include "chrome/common/url_constants.h" 30 #include "chrome/common/url_constants.h"
31 #include "chrome/installer/util/chrome_frame_distribution.h" 31 #include "chrome/installer/util/chrome_frame_distribution.h"
32 #include "chrome_frame/extra_system_apis.h" 32 #include "chrome_frame/extra_system_apis.h"
33 #include "chrome_frame/html_utils.h" 33 #include "chrome_frame/html_utils.h"
(...skipping 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after
1565 ++url_list; 1565 ++url_list;
1566 } 1566 }
1567 } 1567 }
1568 1568
1569 std::wstring GetCurrentModuleVersion() { 1569 std::wstring GetCurrentModuleVersion() {
1570 scoped_ptr<FileVersionInfo> module_version_info( 1570 scoped_ptr<FileVersionInfo> module_version_info(
1571 FileVersionInfo::CreateFileVersionInfoForCurrentModule()); 1571 FileVersionInfo::CreateFileVersionInfoForCurrentModule());
1572 DCHECK(module_version_info.get() != NULL); 1572 DCHECK(module_version_info.get() != NULL);
1573 return module_version_info->file_version(); 1573 return module_version_info->file_version();
1574 } 1574 }
OLDNEW
« no previous file with comments | « chrome_frame/urlmon_moniker.h ('k') | net/base/dns_reload_timer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698