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

Unified Diff: chrome/browser/ui/webui/history_ui.cc

Issue 10166002: History: Fix string indicating the wrong shortcut for incognito mode on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/history_ui.cc
diff --git a/chrome/browser/ui/webui/history_ui.cc b/chrome/browser/ui/webui/history_ui.cc
index 76bf780e9c590cc4b33b74a412e0fb4bbac87602..38092151f6bd78bddf7a3ebfbb7df10272cb8bfa 100644
--- a/chrome/browser/ui/webui/history_ui.cc
+++ b/chrome/browser/ui/webui/history_ui.cc
@@ -58,8 +58,10 @@ static const char kHistoryJsFile[] = "history.js";
namespace {
#if defined(OS_MACOSX)
-// U+0028 U+21E7 U+2318 U+004E U+0029 in UTF8
-const char kIncognitoModeShortcut[] = "\x28\xE2\x8c\xA5\xE2\x8C\x98\x4E\x29";
+const char kIncognitoModeShortcut[] = "("
+ "\xE2\x87\xA7" // Shift symbol (U+21E7 'UPWARDS WHITE ARROW').
+ "\xE2\x8C\x98" // Command symbol (U+2318 'PLACE OF INTEREST SIGN').
+ "N)";
#elif defined(OS_WIN)
const char kIncognitoModeShortcut[] = "(Ctrl+Shift+N)";
#else
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698