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

Side by Side Diff: chrome/browser/importer/ie_importer.cc

Issue 11000016: Move forms/ out of webkit/. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Response to review Created 8 years, 2 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
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 <pstore.h> 9 #include <pstore.h>
10 #include <shlobj.h> 10 #include <shlobj.h>
(...skipping 20 matching lines...) Expand all
31 #include "base/win/windows_version.h" 31 #include "base/win/windows_version.h"
32 #include "chrome/browser/importer/importer_bridge.h" 32 #include "chrome/browser/importer/importer_bridge.h"
33 #include "chrome/browser/importer/importer_data_types.h" 33 #include "chrome/browser/importer/importer_data_types.h"
34 #include "chrome/browser/importer/importer_util.h" 34 #include "chrome/browser/importer/importer_util.h"
35 #include "chrome/browser/password_manager/ie7_password.h" 35 #include "chrome/browser/password_manager/ie7_password.h"
36 #include "chrome/browser/search_engines/template_url.h" 36 #include "chrome/browser/search_engines/template_url.h"
37 #include "chrome/browser/search_engines/template_url_prepopulate_data.h" 37 #include "chrome/browser/search_engines/template_url_prepopulate_data.h"
38 #include "chrome/browser/search_engines/template_url_service.h" 38 #include "chrome/browser/search_engines/template_url_service.h"
39 #include "chrome/common/time_format.h" 39 #include "chrome/common/time_format.h"
40 #include "chrome/common/url_constants.h" 40 #include "chrome/common/url_constants.h"
41 #include "content/public/common/password_form.h"
41 #include "googleurl/src/gurl.h" 42 #include "googleurl/src/gurl.h"
42 #include "grit/generated_resources.h" 43 #include "grit/generated_resources.h"
43 #include "ui/base/l10n/l10n_util.h" 44 #include "ui/base/l10n/l10n_util.h"
44 #include "webkit/forms/password_form.h"
45 45
46 namespace { 46 namespace {
47 47
48 // Registry key paths from which we import IE settings. 48 // Registry key paths from which we import IE settings.
49 const char16 kStorage2Path[] = 49 const char16 kStorage2Path[] =
50 L"Software\\Microsoft\\Internet Explorer\\IntelliForms\\Storage2"; 50 L"Software\\Microsoft\\Internet Explorer\\IntelliForms\\Storage2";
51 const char16 kSearchScopePath[] = 51 const char16 kSearchScopePath[] =
52 L"Software\\Microsoft\\Internet Explorer\\SearchScopes"; 52 L"Software\\Microsoft\\Internet Explorer\\SearchScopes";
53 const char16 kIESettingsMain[] = 53 const char16 kIESettingsMain[] =
54 L"Software\\Microsoft\\Internet Explorer\\Main"; 54 L"Software\\Microsoft\\Internet Explorer\\Main";
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 for (i = 0; i < ac_list.size(); i++) { 602 for (i = 0; i < ac_list.size(); i++) {
603 if (!ac_list[i].is_url || ac_list[i].data.size() < 2) 603 if (!ac_list[i].is_url || ac_list[i].data.size() < 2)
604 continue; 604 continue;
605 605
606 GURL url(ac_list[i].key.c_str()); 606 GURL url(ac_list[i].key.c_str());
607 if (!(LowerCaseEqualsASCII(url.scheme(), chrome::kHttpScheme) || 607 if (!(LowerCaseEqualsASCII(url.scheme(), chrome::kHttpScheme) ||
608 LowerCaseEqualsASCII(url.scheme(), chrome::kHttpsScheme))) { 608 LowerCaseEqualsASCII(url.scheme(), chrome::kHttpsScheme))) {
609 continue; 609 continue;
610 } 610 }
611 611
612 webkit::forms::PasswordForm form; 612 content::PasswordForm form;
613 GURL::Replacements rp; 613 GURL::Replacements rp;
614 rp.ClearUsername(); 614 rp.ClearUsername();
615 rp.ClearPassword(); 615 rp.ClearPassword();
616 rp.ClearQuery(); 616 rp.ClearQuery();
617 rp.ClearRef(); 617 rp.ClearRef();
618 form.origin = url.ReplaceComponents(rp); 618 form.origin = url.ReplaceComponents(rp);
619 form.username_value = ac_list[i].data[0]; 619 form.username_value = ac_list[i].data[0];
620 form.password_value = ac_list[i].data[1]; 620 form.password_value = ac_list[i].data[1];
621 form.signon_realm = url.GetOrigin().spec(); 621 form.signon_realm = url.GetOrigin().spec();
622 622
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 static int version = -1; 874 static int version = -1;
875 if (version < 0) { 875 if (version < 0) {
876 wchar_t buffer[128]; 876 wchar_t buffer[128];
877 DWORD buffer_length = sizeof(buffer); 877 DWORD buffer_length = sizeof(buffer);
878 base::win::RegKey reg_key(HKEY_LOCAL_MACHINE, kIEVersionKey, KEY_READ); 878 base::win::RegKey reg_key(HKEY_LOCAL_MACHINE, kIEVersionKey, KEY_READ);
879 LONG result = reg_key.ReadValue(L"Version", buffer, &buffer_length, NULL); 879 LONG result = reg_key.ReadValue(L"Version", buffer, &buffer_length, NULL);
880 version = ((result == ERROR_SUCCESS)? _wtoi(buffer) : 0); 880 version = ((result == ERROR_SUCCESS)? _wtoi(buffer) : 0);
881 } 881 }
882 return version; 882 return version;
883 } 883 }
OLDNEW
« no previous file with comments | « chrome/browser/importer/firefox_importer_unittest.cc ('k') | chrome/browser/importer/ie_importer_unittest_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698