Index: ui/views/events/event_wayland.cc |
=================================================================== |
--- ui/views/events/event_wayland.cc (revision 110826) |
+++ ui/views/events/event_wayland.cc (working copy) |
@@ -1,23 +0,0 @@ |
-// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "ui/views/events/event.h" |
- |
-#include "base/logging.h" |
-#include "ui/base/keycodes/keyboard_code_conversion.h" |
- |
-namespace views { |
- |
-////////////////////////////////////////////////////////////////////////////// |
-// KeyEvent, public: |
- |
-uint16 KeyEvent::GetCharacter() const { |
- return ui::GetCharacterFromKeyCode(key_code_, flags()); |
-} |
- |
-uint16 KeyEvent::GetUnmodifiedCharacter() const { |
- return ui::GetCharacterFromKeyCode(key_code_, flags() & ui::EF_SHIFT_DOWN); |
-} |
- |
-} // namespace views |