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

Unified Diff: ui/aura/test/event_generator.h

Issue 406413004: Cleanups for aura/test/event_generator.h (resolve TODOs) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase at r285842 Created 6 years, 5 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
« no previous file with comments | « ui/aura/gestures/gesture_recognizer_unittest.cc ('k') | ui/aura/test/event_generator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/test/event_generator.h
diff --git a/ui/aura/test/event_generator.h b/ui/aura/test/event_generator.h
deleted file mode 100644
index aed36d66ea7a6940bb56cc83585d6e71d835976c..0000000000000000000000000000000000000000
--- a/ui/aura/test/event_generator.h
+++ /dev/null
@@ -1,61 +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.
-
-// TODO(tapted): Rename this file event_generator_delegate_aura.h.
-
-#ifndef UI_AURA_TEST_EVENT_GENERATOR_H_
-#define UI_AURA_TEST_EVENT_GENERATOR_H_
-
-#include "ui/events/test/event_generator.h"
-
-namespace aura {
-class Window;
-class WindowTreeHost;
-
-namespace client {
-class ScreenPositionClient;
-}
-
-namespace test {
-
-// Implementation of ui::test::EventGeneratorDelegate for Aura.
-class EventGeneratorDelegateAura : public ui::test::EventGeneratorDelegate {
- public:
- EventGeneratorDelegateAura();
- virtual ~EventGeneratorDelegateAura();
-
- // Returns the host for given point.
- virtual WindowTreeHost* GetHostAt(const gfx::Point& point) const = 0;
-
- // Returns the screen position client that determines the
- // coordinates used in EventGenerator. EventGenerator uses
- // root Window's coordinate if this returns NULL.
- virtual client::ScreenPositionClient* GetScreenPositionClient(
- const aura::Window* window) const = 0;
-
- // Overridden from ui::test::EventGeneratorDelegate:
- virtual ui::EventTarget* GetTargetAt(const gfx::Point& location) OVERRIDE;
- virtual ui::EventSource* GetEventSource(ui::EventTarget* target) OVERRIDE;
- virtual gfx::Point CenterOfTarget(
- const ui::EventTarget* target) const OVERRIDE;
- virtual gfx::Point CenterOfWindow(gfx::NativeWindow window) const OVERRIDE;
- virtual void ConvertPointFromTarget(const ui::EventTarget* target,
- gfx::Point* point) const OVERRIDE;
- virtual void ConvertPointToTarget(const ui::EventTarget* target,
- gfx::Point* point) const OVERRIDE;
- virtual void ConvertPointFromHost(const ui::EventTarget* hosted_target,
- gfx::Point* point) const OVERRIDE;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(EventGeneratorDelegateAura);
-};
-
-// Expose the EventGenerator from ui::test in the aura::test namespace.
-// TODO(tapted): Remove this.
-using ui::test::EventGenerator;
-
-} // namespace test
-} // namespace aura
-
-#endif // UI_AURA_TEST_EVENT_GENERATOR_H_
« no previous file with comments | « ui/aura/gestures/gesture_recognizer_unittest.cc ('k') | ui/aura/test/event_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698