| Index: trunk/src/ui/aura/test/event_generator_delegate_aura.h
|
| ===================================================================
|
| --- trunk/src/ui/aura/test/event_generator_delegate_aura.h (revision 285220)
|
| +++ trunk/src/ui/aura/test/event_generator_delegate_aura.h (working copy)
|
| @@ -1,55 +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 UI_AURA_TEST_EVENT_GENERATOR_DELEGATE_AURA_H_
|
| -#define UI_AURA_TEST_EVENT_GENERATOR_DELEGATE_AURA_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);
|
| -};
|
| -
|
| -} // namespace test
|
| -} // namespace aura
|
| -
|
| -#endif // UI_AURA_TEST_EVENT_GENERATOR_DELEGATE_AURA_H_
|
|
|