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

Unified Diff: third_party/WebKit/Source/web/tests/KeyboardTest.cpp

Issue 2812643002: Fix names of local constants after blink rename. (Closed)
Patch Set: Created 3 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
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));
}

Powered by Google App Engine
This is Rietveld 408576698