Index: mojo/examples/keyboard/keyboard_delegate.h |
diff --git a/mojo/examples/keyboard/keyboard_delegate.h b/mojo/examples/keyboard/keyboard_delegate.h |
deleted file mode 100644 |
index bf35fc6ad92dae59a60380f65bdfa8fcfa0884dd..0000000000000000000000000000000000000000 |
--- a/mojo/examples/keyboard/keyboard_delegate.h |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-// Copyright 2014 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. |
- |
-#ifndef MOJO_EXAMPLES_KEYBOARD_KEYBOARD_DELEGATE_H_ |
-#define MOJO_EXAMPLES_KEYBOARD_KEYBOARD_DELEGATE_H_ |
- |
-#include "base/basictypes.h" |
- |
-namespace mojo { |
-namespace examples { |
- |
-class KeyboardDelegate { |
- public: |
- KeyboardDelegate() {} |
- |
- virtual void OnKeyPressed(int key_code, int event_flags) = 0; |
- |
- protected: |
- virtual ~KeyboardDelegate() {} |
-}; |
- |
-} // namespace examples |
-} // namespace mojo |
- |
-#endif // MOJO_EXAMPLES_KEYBOARD_KEYBOARD_DELEGATE_H_ |