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

Unified Diff: chrome/browser/chromeos/login/login_web_dialog.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/login/login_web_dialog.cc
diff --git a/chrome/browser/chromeos/login/login_web_dialog.cc b/chrome/browser/chromeos/login/login_web_dialog.cc
index f72bf1c2ec93db54bc60f3961f68ffb702084560..32ff69031dcc30720870bd68ffe3fcdfd6ec6889 100644
--- a/chrome/browser/chromeos/login/login_web_dialog.cc
+++ b/chrome/browser/chromeos/login/login_web_dialog.cc
@@ -41,7 +41,7 @@ void LoginWebDialog::Delegate::OnDialogClosed() {
LoginWebDialog::LoginWebDialog(Delegate* delegate,
gfx::NativeWindow parent_window,
- const string16& title,
+ const base::string16& title,
const GURL& url,
Style style)
: delegate_(delegate),
@@ -72,7 +72,7 @@ void LoginWebDialog::SetDialogSize(int width, int height) {
height_ = height;
}
-void LoginWebDialog::SetDialogTitle(const string16& title) {
+void LoginWebDialog::SetDialogTitle(const base::string16& title) {
title_ = title;
}

Powered by Google App Engine
This is Rietveld 408576698