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

Unified Diff: chrome/browser/background/background_application_list_model.cc

Issue 105193002: Replace string16 with base::string16. (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/background/background_application_list_model.cc
diff --git a/chrome/browser/background/background_application_list_model.cc b/chrome/browser/background/background_application_list_model.cc
index 0d950d6c7117dc98e6bf5c10110465bd7bb7be6c..01579569654d1e1eb47f98f16f7ba1f18a859864 100644
--- a/chrome/browser/background/background_application_list_model.cc
+++ b/chrome/browser/background/background_application_list_model.cc
@@ -316,7 +316,7 @@ bool BackgroundApplicationListModel::IsBackgroundApp(
BackgroundContentsService* service =
BackgroundContentsServiceFactory::GetForProfile(profile);
- string16 app_id = ASCIIToUTF16(extension.id());
+ base::string16 app_id = ASCIIToUTF16(extension.id());
// If we have an active or registered background contents for this app, then
// it's a background app. This covers the cases where the app has created its
// background contents, but it hasn't navigated yet, or the background

Powered by Google App Engine
This is Rietveld 408576698