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

Unified Diff: chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.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/chromeos/ui/screen_capture_notification_ui_chromeos.cc
diff --git a/chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.cc b/chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.cc
index 85713638031c881c20a3c93a6222579eaff48b7f..eed66dc44b64c8224aa9245f102dd640eea366d9 100644
--- a/chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.cc
+++ b/chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.cc
@@ -12,7 +12,7 @@
namespace chromeos {
ScreenCaptureNotificationUIChromeOS::ScreenCaptureNotificationUIChromeOS(
- const string16& text)
+ const base::string16& text)
: text_(text) {
}
@@ -32,7 +32,7 @@ void ScreenCaptureNotificationUIChromeOS::OnStarted(
// static
scoped_ptr<ScreenCaptureNotificationUI> ScreenCaptureNotificationUI::Create(
- const string16& text) {
+ const base::string16& text) {
return scoped_ptr<ScreenCaptureNotificationUI>(
new chromeos::ScreenCaptureNotificationUIChromeOS(text));
}

Powered by Google App Engine
This is Rietveld 408576698