summaryrefslogtreecommitdiffstats
path: root/mojo/examples/keyboard/keyboard_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/examples/keyboard/keyboard_delegate.h')
-rw-r--r--mojo/examples/keyboard/keyboard_delegate.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/mojo/examples/keyboard/keyboard_delegate.h b/mojo/examples/keyboard/keyboard_delegate.h
deleted file mode 100644
index bf35fc6..0000000
--- 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_