| Index: third_party/WebKit/Source/web/tests/KeyboardTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/KeyboardTest.cpp b/third_party/WebKit/Source/web/tests/KeyboardTest.cpp
|
| index bda7a89a69858c25a54d1a92a32603e7e89611af..7364b94c3c79ae508762d407d240dfcb03a37c33 100644
|
| --- a/third_party/WebKit/Source/web/tests/KeyboardTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/KeyboardTest.cpp
|
| @@ -172,11 +172,11 @@ TEST_F(KeyboardTest, TestDomKeyMap) {
|
| struct TestCase {
|
| const char* key;
|
| const char* command;
|
| - } k_dom_key_test_cases[] = {
|
| + } kDomKeyTestCases[] = {
|
| {"Copy", "Copy"}, {"Cut", "Cut"}, {"Paste", "Paste"},
|
| };
|
|
|
| - for (const auto& test_case : k_dom_key_test_cases)
|
| + for (const auto& test_case : kDomKeyTestCases)
|
| EXPECT_STREQ(test_case.command, InterpretDomKey(test_case.key));
|
| }
|
|
|
|
|