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

Unified Diff: chrome/common/extensions/api/url_handlers/url_handlers_parser.cc

Issue 105473003: Add explicit base namespace to string16 users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/common/extensions/api/url_handlers/url_handlers_parser.h ('k') | chrome/common/extensions/command.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/url_handlers/url_handlers_parser.cc
diff --git a/chrome/common/extensions/api/url_handlers/url_handlers_parser.cc b/chrome/common/extensions/api/url_handlers/url_handlers_parser.cc
index a39977146f45c79c50b2c6a7619330c48801790c..1299aad862131915db78683244580e2e83a4b02a 100644
--- a/chrome/common/extensions/api/url_handlers/url_handlers_parser.cc
+++ b/chrome/common/extensions/api/url_handlers/url_handlers_parser.cc
@@ -91,7 +91,7 @@ UrlHandlersParser::~UrlHandlersParser() {
bool ParseUrlHandler(const std::string& handler_id,
const DictionaryValue& handler_info,
std::vector<UrlHandlerInfo>* url_handlers,
- string16* error) {
+ base::string16* error) {
DCHECK(error);
UrlHandlerInfo handler;
@@ -132,7 +132,7 @@ bool ParseUrlHandler(const std::string& handler_id,
return true;
}
-bool UrlHandlersParser::Parse(Extension* extension, string16* error) {
+bool UrlHandlersParser::Parse(Extension* extension, base::string16* error) {
scoped_ptr<UrlHandlers> info(new UrlHandlers);
const DictionaryValue* all_handlers = NULL;
if (!extension->manifest()->GetDictionary(
« no previous file with comments | « chrome/common/extensions/api/url_handlers/url_handlers_parser.h ('k') | chrome/common/extensions/command.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698