summaryrefslogtreecommitdiffstats
path: root/ui/base/ozone/event_factory_delegate_ozone.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/base/ozone/event_factory_delegate_ozone.h')
-rw-r--r--ui/base/ozone/event_factory_delegate_ozone.h29
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_