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

Unified Diff: webkit/tools/test_shell/event_sending_controller.cc

Issue 6015002: Rename WebKitTools->Tools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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: webkit/tools/test_shell/event_sending_controller.cc
diff --git a/webkit/tools/test_shell/event_sending_controller.cc b/webkit/tools/test_shell/event_sending_controller.cc
index 9f6fe4b6ac83a1d452e976679362c98841f4d1ed..d86d374881164cadc9698a5d6a578be53b3658cf 100644
--- a/webkit/tools/test_shell/event_sending_controller.cc
+++ b/webkit/tools/test_shell/event_sending_controller.cc
@@ -582,7 +582,7 @@ void EventSendingController::keyDown(
}
// For one generated keyboard event, we need to generate a keyDown/keyUp
- // pair; refer to EventSender.cpp in WebKit/WebKitTools/DumpRenderTree/win.
+ // pair; refer to EventSender.cpp in WebKit/Tools/DumpRenderTree/win.
// On Windows, we might also need to generate a char event to mimic the
// Windows event flow; on other platforms we create a merged event and test
// the event flow that that platform provides.
@@ -669,7 +669,7 @@ void EventSendingController::dispatchMessage(
bool EventSendingController::NeedsShiftModifier(int key_code) {
// If code is an uppercase letter, assign a SHIFT key to
// event_down.modifier, this logic comes from
- // WebKit/WebKitTools/DumpRenderTree/Win/EventSender.cpp
+ // WebKit/Tools/DumpRenderTree/Win/EventSender.cpp
if ((key_code & 0xFF) >= 'A' && (key_code & 0xFF) <= 'Z')
return true;
return false;
« no previous file with comments | « webkit/tools/test_shell/event_sending_controller.h ('k') | webkit/tools/test_shell/mac/DumpRenderTreePasteboard.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698