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

Unified Diff: chrome/utility/importer/ie_importer_win.cc

Issue 23112033: content: Move kHttpsScheme constant into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/extensions/user_script_slave.cc ('k') | chrome_frame/navigation_constraints.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/ie_importer_win.cc
diff --git a/chrome/utility/importer/ie_importer_win.cc b/chrome/utility/importer/ie_importer_win.cc
index 11a61c2c024b695027f57df84d9ad39b6d123f9b..0c7c1ea2294fb1e1890ce69b1e763f704cf0a1aa 100644
--- a/chrome/utility/importer/ie_importer_win.cc
+++ b/chrome/utility/importer/ie_importer_win.cc
@@ -471,7 +471,7 @@ void IEImporter::ImportFavorites() {
void IEImporter::ImportHistory() {
const std::string kSchemes[] = {chrome::kHttpScheme,
- chrome::kHttpsScheme,
+ content::kHttpsScheme,
chrome::kFtpScheme,
chrome::kFileScheme};
int total_schemes = arraysize(kSchemes);
@@ -605,7 +605,7 @@ void IEImporter::ImportPasswordsIE6() {
GURL url(ac_list[i].key.c_str());
if (!(LowerCaseEqualsASCII(url.scheme(), chrome::kHttpScheme) ||
- LowerCaseEqualsASCII(url.scheme(), chrome::kHttpsScheme))) {
+ LowerCaseEqualsASCII(url.scheme(), content::kHttpsScheme))) {
continue;
}
« no previous file with comments | « chrome/renderer/extensions/user_script_slave.cc ('k') | chrome_frame/navigation_constraints.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698