diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-23 20:12:59 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-23 20:12:59 +0000 |
commit | 38191afc4c8573ee57312a580a22196df9817eed (patch) | |
tree | 4d187fa6f7921d3b157c5c49f0b6c528baf7ad44 /ui/base/ozone/event_factory_delegate_ozone.h | |
parent | 1effbd4b2add4102733dc85a9fd8e4502830613c (diff) | |
download | chromium_src-38191afc4c8573ee57312a580a22196df9817eed.zip chromium_src-38191afc4c8573ee57312a580a22196df9817eed.tar.gz chromium_src-38191afc4c8573ee57312a580a22196df9817eed.tar.bz2 |
Move Ozone event stuff to ui/events
BUG=none
R=rjkroege@chromium.org
Review URL: https://codereview.chromium.org/23465037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224774 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/base/ozone/event_factory_delegate_ozone.h')
-rw-r--r-- | ui/base/ozone/event_factory_delegate_ozone.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/ui/base/ozone/event_factory_delegate_ozone.h b/ui/base/ozone/event_factory_delegate_ozone.h deleted file mode 100644 index 04d427d..0000000 --- a/ui/base/ozone/event_factory_delegate_ozone.h +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2013 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_BASE_OZONE_EVENT_FACTORY_DELEGATE_OZONE_H_ -#define UI_BASE_OZONE_EVENT_FACTORY_DELEGATE_OZONE_H_ - -namespace ui { -class Event; -class EventFactoryOzone; - -// An embedder can install an instance of this interface to take control of -// what |EventConverterOzone| objects get created on the creation of -// the |RootWindowHostOzone| object. -class UI_EXPORT EventFactoryDelegateOzone { - public: - EventFactoryDelegateOzone(); - virtual ~EventFactoryDelegateOzone(); - - // Override this method with embedder-appropriate converter creation. - virtual void CreateStartupEventConverters(EventFactoryOzone* factory) = 0; - - private: - DISALLOW_COPY_AND_ASSIGN(EventFactoryDelegateOzone); -}; - -} // namespace ui - -#endif // UI_BASE_OZONE_EVENT_FACTORY_DELEGATE_OZONE_H_ |