Commit 76a57be2 authored by gozzard's avatar gozzard Committed by Commit bot

Simplify print preview system dialog message

print_preview_ui.cc previously specified different specified a system
print dialog shortcut message of "(Ctrl+Shift+P)" for Windows and
ChromeOS, and "(Shift+Ctrl+P)" for everything else except Mac OSX. These
have been unified such that everything besides Mac OSX uses
"(Ctrl+Shift+P)".

Review-Url: https://codereview.chromium.org/2534733002
Cr-Commit-Position: refs/heads/master@{#434915}
parent 191042a3
...@@ -62,10 +62,8 @@ namespace { ...@@ -62,10 +62,8 @@ namespace {
#if defined(OS_MACOSX) #if defined(OS_MACOSX)
// U+0028 U+21E7 U+2318 U+0050 U+0029 in UTF8 // U+0028 U+21E7 U+2318 U+0050 U+0029 in UTF8
const char kBasicPrintShortcut[] = "\x28\xE2\x8c\xA5\xE2\x8C\x98\x50\x29"; const char kBasicPrintShortcut[] = "\x28\xE2\x8c\xA5\xE2\x8C\x98\x50\x29";
#elif defined(OS_WIN) || defined(OS_CHROMEOS)
const char kBasicPrintShortcut[] = "(Ctrl+Shift+P)";
#else #else
const char kBasicPrintShortcut[] = "(Shift+Ctrl+P)"; const char kBasicPrintShortcut[] = "(Ctrl+Shift+P)";
#endif #endif
// Thread-safe wrapper around a std::map to keep track of mappings from // Thread-safe wrapper around a std::map to keep track of mappings from
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment