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

Unified Diff: chrome/browser/extensions/extension_message_bubble_controller.cc

Issue 108813011: Add base:: namespace to string16 in chrome/browser/extensions. (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
Index: chrome/browser/extensions/extension_message_bubble_controller.cc
diff --git a/chrome/browser/extensions/extension_message_bubble_controller.cc b/chrome/browser/extensions/extension_message_bubble_controller.cc
index bf7ecc41be003bea12084305fdd9092bf42acc12..1cf7e4fb9204bd789c0ec75b5de46e37129b8bfd 100644
--- a/chrome/browser/extensions/extension_message_bubble_controller.cc
+++ b/chrome/browser/extensions/extension_message_bubble_controller.cc
@@ -44,13 +44,13 @@ bool ExtensionMessageBubbleController::ShouldShow() {
return !GetOrCreateExtensionList()->empty();
}
-std::vector<string16>
+std::vector<base::string16>
ExtensionMessageBubbleController::GetExtensionList() {
ExtensionIdList* list = GetOrCreateExtensionList();
if (list->empty())
- return std::vector<string16>();
+ return std::vector<base::string16>();
- std::vector<string16> return_value;
+ std::vector<base::string16> return_value;
for (ExtensionIdList::const_iterator it = list->begin();
it != list->end(); ++it) {
const Extension* extension = service_->GetInstalledExtension(*it);

Powered by Google App Engine
This is Rietveld 408576698