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

Unified Diff: chrome/browser/global_keyboard_shortcuts_mac_unittest.cc

Issue 155252: Remove errant semicolon. distcc's pump mode didn't understand this. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | « chrome/browser/global_keyboard_shortcuts_mac.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/global_keyboard_shortcuts_mac_unittest.cc
===================================================================
--- chrome/browser/global_keyboard_shortcuts_mac_unittest.cc (revision 20206)
+++ chrome/browser/global_keyboard_shortcuts_mac_unittest.cc (working copy)
@@ -9,13 +9,13 @@
TEST(GlobalKeyboardShortcuts, ShortCutsToCommand) {
// Test that an invalid shortcut translates into an invalid command id.
ASSERT_EQ(CommandForKeyboardShortcut(false, false, false, 0), -1);
-
+
// Check that all known keyboard shortcuts return valid results.
size_t num_shortcuts = 0;
const KeyboardShortcutData *it = GetKeyboardShortCutTable(&num_shortcuts);
ASSERT_GT(num_shortcuts, 0U);
for (size_t i = 0; i < num_shortcuts; ++i, ++it) {
- int cmd_num = CommandForKeyboardShortcut(it->command_key, it->shift_key,
+ int cmd_num = CommandForKeyboardShortcut(it->command_key, it->shift_key,
it->cntrl_key, it->vkey_code);
ASSERT_EQ(cmd_num, it->chrome_command);
}
Property changes on: chrome/browser/global_keyboard_shortcuts_mac_unittest.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/global_keyboard_shortcuts_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698