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

Unified Diff: content/common/url_schemes.cc

Issue 252323006: Renamed namespaces in src/content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tue 04/29/2014 19:25:43.09 Created 6 years, 8 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 | « content/browser/webui/url_data_manager_backend.cc ('k') | content/renderer/npapi/webplugin_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/url_schemes.cc
diff --git a/content/common/url_schemes.cc b/content/common/url_schemes.cc
index 8ab7135ada9cf7f304252e49312ad8453a03c8a6..c65bb14562de2f2c0f182c6882bc9d9d808e4205 100644
--- a/content/common/url_schemes.cc
+++ b/content/common/url_schemes.cc
@@ -20,7 +20,7 @@
namespace {
void AddStandardSchemeHelper(const std::string& scheme) {
- url_util::AddStandardScheme(scheme.c_str());
+ url::AddStandardScheme(scheme.c_str());
}
} // namespace
@@ -33,10 +33,10 @@ void RegisterContentSchemes(bool lock_standard_schemes) {
GetContentClient()->AddAdditionalSchemes(&additional_standard_schemes,
&additional_savable_schemes);
- url_util::AddStandardScheme(kChromeDevToolsScheme);
- url_util::AddStandardScheme(kChromeUIScheme);
- url_util::AddStandardScheme(kGuestScheme);
- url_util::AddStandardScheme(kMetadataScheme);
+ url::AddStandardScheme(kChromeDevToolsScheme);
+ url::AddStandardScheme(kChromeUIScheme);
+ url::AddStandardScheme(kGuestScheme);
+ url::AddStandardScheme(kMetadataScheme);
std::for_each(additional_standard_schemes.begin(),
additional_standard_schemes.end(),
AddStandardSchemeHelper);
@@ -47,7 +47,7 @@ void RegisterContentSchemes(bool lock_standard_schemes) {
// thread. This is really easy to mess up, so we say that all calls to
// AddStandardScheme in Chrome must be inside this function.
if (lock_standard_schemes)
- url_util::LockStandardSchemes();
+ url::LockStandardSchemes();
// We rely on the above lock to protect this part from being invoked twice.
if (!additional_savable_schemes.empty()) {
« no previous file with comments | « content/browser/webui/url_data_manager_backend.cc ('k') | content/renderer/npapi/webplugin_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698