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

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

Issue 23658056: content: Move kHttpScheme constant into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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/safe_browsing/phishing_classifier.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 9dd760a88dfe80392f348d33b57ecbf6386939d9..3ca85a324f4c749dc82d49d0373df73dca83e6a4 100644
--- a/chrome/utility/importer/ie_importer_win.cc
+++ b/chrome/utility/importer/ie_importer_win.cc
@@ -469,7 +469,7 @@ void IEImporter::ImportFavorites() {
}
void IEImporter::ImportHistory() {
- const std::string kSchemes[] = {chrome::kHttpScheme,
+ const std::string kSchemes[] = {content::kHttpScheme,
content::kHttpsScheme,
chrome::kFtpScheme,
chrome::kFileScheme};
@@ -603,7 +603,7 @@ void IEImporter::ImportPasswordsIE6() {
continue;
GURL url(ac_list[i].key.c_str());
- if (!(LowerCaseEqualsASCII(url.scheme(), chrome::kHttpScheme) ||
+ if (!(LowerCaseEqualsASCII(url.scheme(), content::kHttpScheme) ||
LowerCaseEqualsASCII(url.scheme(), content::kHttpsScheme))) {
continue;
}
« no previous file with comments | « chrome/renderer/safe_browsing/phishing_classifier.cc ('k') | chrome_frame/navigation_constraints.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698