summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/event_sending_controller.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools/test_shell/event_sending_controller.cc')
-rw-r--r--webkit/tools/test_shell/event_sending_controller.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/webkit/tools/test_shell/event_sending_controller.cc b/webkit/tools/test_shell/event_sending_controller.cc
index 12e69d3..ac10803 100644
--- a/webkit/tools/test_shell/event_sending_controller.cc
+++ b/webkit/tools/test_shell/event_sending_controller.cc
@@ -21,6 +21,7 @@
#endif
#include <queue>
+#include "base/logging.h"
#include "base/ref_counted.h"
#include "base/string_util.h"
#include "base/time.h"
@@ -400,6 +401,11 @@ int EventSendingController::GetButtonNumberFromSingleArg(
} else if (L"delete" == code_str) {
code = 0x33;
}
+#elif defined(OS_LINUX)
+ // TODO(agl): We obviously need to do something about keycodes here
+ if (true) {
+ NOTIMPLEMENTED();
+ }
#endif
else {
DCHECK(code_str.length() == 1);