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

Unified Diff: chrome/browser/android/shortcut_helper.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
« no previous file with comments | « chrome/browser/android/shortcut_helper.h ('k') | chrome/browser/android/tab_android.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/shortcut_helper.cc
diff --git a/chrome/browser/android/shortcut_helper.cc b/chrome/browser/android/shortcut_helper.cc
index 8025b9321feb685c5952e546b1e3aa3876f14c17..ea767cdb9835acc8b6e3b48d57be46aa8aad4c0f 100644
--- a/chrome/browser/android/shortcut_helper.cc
+++ b/chrome/browser/android/shortcut_helper.cc
@@ -29,7 +29,7 @@
#include "url/gurl.h"
ShortcutBuilder::ShortcutBuilder(content::WebContents* web_contents,
- const string16& title,
+ const base::string16& title,
int launcher_large_icon_size)
: launcher_large_icon_size_(launcher_large_icon_size),
shortcut_type_(BOOKMARK) {
@@ -125,7 +125,7 @@ void ShortcutBuilder::Destroy() {
}
void ShortcutHelper::AddShortcut(content::WebContents* web_contents,
- const string16& title,
+ const base::string16& title,
int launcher_large_icon_size) {
// The ShortcutBuilder deletes itself when it's done.
new ShortcutBuilder(web_contents, title, launcher_large_icon_size);
@@ -137,7 +137,7 @@ bool ShortcutHelper::RegisterShortcutHelper(JNIEnv* env) {
void ShortcutHelper::AddShortcutInBackground(
const GURL& url,
- const string16& title,
+ const base::string16& title,
ShortcutBuilder::ShortcutType shortcut_type,
const chrome::FaviconBitmapResult& bitmap_result) {
DCHECK(base::WorkerPool::RunsTasksOnCurrentThread());
« no previous file with comments | « chrome/browser/android/shortcut_helper.h ('k') | chrome/browser/android/tab_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698