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

Side by Side Diff: chrome/browser/importer/ie_importer.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 "chrome/browser/importer/ie_importer.h" 5 #include "chrome/browser/importer/ie_importer.h"
6 6
7 #include <ole2.h> 7 #include <ole2.h>
8 #include <intshcut.h> 8 #include <intshcut.h>
9 #include <shlobj.h> 9 #include <shlobj.h>
10 #include <urlhist.h> 10 #include <urlhist.h>
11 #include <wininet.h> 11 #include <wininet.h>
12 12
13 #include <algorithm> 13 #include <algorithm>
14 #include <map> 14 #include <map>
15 #include <string> 15 #include <string>
16 #include <vector> 16 #include <vector>
17 17
18 #include "base/file_util.h" 18 #include "base/file_util.h"
19 #include "base/files/file_path.h" 19 #include "base/files/file_path.h"
20 #include "base/string16.h" 20 #include "base/string16.h"
21 #include "base/string_split.h"
22 #include "base/string_util.h" 21 #include "base/string_util.h"
22 #include "base/strings/string_split.h"
23 #include "base/time.h" 23 #include "base/time.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_co_mem.h" 26 #include "base/win/scoped_co_mem.h"
27 #include "base/win/scoped_comptr.h" 27 #include "base/win/scoped_comptr.h"
28 #include "base/win/scoped_handle.h" 28 #include "base/win/scoped_handle.h"
29 #include "base/win/scoped_propvariant.h" 29 #include "base/win/scoped_propvariant.h"
30 #include "base/win/windows_version.h" 30 #include "base/win/windows_version.h"
31 #include "chrome/browser/importer/importer_bridge.h" 31 #include "chrome/browser/importer/importer_bridge.h"
32 #include "chrome/browser/importer/importer_data_types.h" 32 #include "chrome/browser/importer/importer_data_types.h"
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 static int version = -1; 884 static int version = -1;
885 if (version < 0) { 885 if (version < 0) {
886 wchar_t buffer[128]; 886 wchar_t buffer[128];
887 DWORD buffer_length = sizeof(buffer); 887 DWORD buffer_length = sizeof(buffer);
888 base::win::RegKey reg_key(HKEY_LOCAL_MACHINE, kIEVersionKey, KEY_READ); 888 base::win::RegKey reg_key(HKEY_LOCAL_MACHINE, kIEVersionKey, KEY_READ);
889 LONG result = reg_key.ReadValue(L"Version", buffer, &buffer_length, NULL); 889 LONG result = reg_key.ReadValue(L"Version", buffer, &buffer_length, NULL);
890 version = ((result == ERROR_SUCCESS)? _wtoi(buffer) : 0); 890 version = ((result == ERROR_SUCCESS)? _wtoi(buffer) : 0);
891 } 891 }
892 return version; 892 return version;
893 } 893 }
OLDNEW
« no previous file with comments | « chrome/browser/importer/firefox_importer_utils.cc ('k') | chrome/browser/importer/nss_decryptor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698