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

Unified Diff: ash/ime/input_method_event_filter.h

Issue 10332145: aura/ash split: Moves RootWindowEventFilter and InputMethodEventFilter to ui/aura/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved to ui/aura/shared/ Created 8 years, 7 months 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: ash/ime/input_method_event_filter.h
diff --git a/ash/ime/input_method_event_filter.h b/ash/ime/input_method_event_filter.h
deleted file mode 100644
index a65660ebc2f87587a045881ce6379d62cac953c1..0000000000000000000000000000000000000000
--- a/ash/ime/input_method_event_filter.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright (c) 2012 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 ASH_IME_INPUT_METHOD_EVENT_FILTER_H_
-#define ASH_IME_INPUT_METHOD_EVENT_FILTER_H_
-#pragma once
-
-#include "ash/ash_export.h"
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "base/memory/scoped_ptr.h"
-#include "ui/aura/event_filter.h"
-#include "ui/base/ime/input_method_delegate.h"
-
-namespace ui {
-class InputMethod;
-}
-
-namespace ash {
-namespace internal {
-
-// An event filter that forwards a KeyEvent to a system IME, and dispatches a
-// TranslatedKeyEvent to the root window as needed.
-class ASH_EXPORT InputMethodEventFilter
- : public aura::EventFilter,
- public ui::internal::InputMethodDelegate {
- public:
- InputMethodEventFilter();
- virtual ~InputMethodEventFilter();
-
- private:
- // Overridden from aura::EventFilter:
- virtual bool PreHandleKeyEvent(aura::Window* target,
- aura::KeyEvent* event) OVERRIDE;
- virtual bool PreHandleMouseEvent(aura::Window* target,
- aura::MouseEvent* event) OVERRIDE;
- virtual ui::TouchStatus PreHandleTouchEvent(
- aura::Window* target,
- aura::TouchEvent* event) OVERRIDE;
- virtual ui::GestureStatus PreHandleGestureEvent(
- aura::Window* target,
- aura::GestureEvent* event) OVERRIDE;
-
- // Overridden from ui::internal::InputMethodDelegate.
- virtual void DispatchKeyEventPostIME(const base::NativeEvent& event) OVERRIDE;
- virtual void DispatchFabricatedKeyEventPostIME(ui::EventType type,
- ui::KeyboardCode key_code,
- int flags) OVERRIDE;
-
- scoped_ptr<ui::InputMethod> input_method_;
-
- DISALLOW_COPY_AND_ASSIGN(InputMethodEventFilter);
-};
-
-} // namespace internal
-} // namespace ash
-
-#endif // ASH_IME_INPUT_METHOD_EVENT_FILTER_H_

Powered by Google App Engine
This is Rietveld 408576698