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

Unified Diff: chrome/browser/ui/gtk/gtk_util.cc

Issue 113403006: Update some uses of char16 to use the base:: namespace. (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/ui/gtk/gtk_util.cc
diff --git a/chrome/browser/ui/gtk/gtk_util.cc b/chrome/browser/ui/gtk/gtk_util.cc
index ebebb46e2b71f08154b52fc698f1b81cda2e8d7f..c267fa59fc6455488ecfbbf7c51150cc5586398f 100644
--- a/chrome/browser/ui/gtk/gtk_util.cc
+++ b/chrome/browser/ui/gtk/gtk_util.cc
@@ -946,7 +946,7 @@ base::string16 GetStockPreferencesMenuLabel() {
GtkStockItem stock_item;
base::string16 preferences;
if (gtk_stock_lookup(GTK_STOCK_PREFERENCES, &stock_item)) {
- const char16 kUnderscore[] = { '_', 0 };
+ const base::char16 kUnderscore[] = { '_', 0 };
base::RemoveChars(base::UTF8ToUTF16(stock_item.label),
kUnderscore, &preferences);
}
« no previous file with comments | « chrome/browser/ui/app_list/search/term_break_iterator.cc ('k') | chrome/browser/ui/omnibox/omnibox_edit_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698