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

Side by Side Diff: ui/ozone/platform/caca/caca_event_factory.h

Issue 312393002: ozone: Move the factory interfaces into a common target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge-r278697 Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/ozone/ozone_platform.h ('k') | ui/ozone/platform/caca/caca_surface_factory.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_OZONE_PLATFORM_CACA_CACA_EVENT_FACTORY_H_ 5 #ifndef UI_OZONE_PLATFORM_CACA_CACA_EVENT_FACTORY_H_
6 #define UI_OZONE_PLATFORM_CACA_CACA_EVENT_FACTORY_H_ 6 #define UI_OZONE_PLATFORM_CACA_CACA_EVENT_FACTORY_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "ui/events/ozone/event_factory_ozone.h"
11 #include "ui/events/platform/platform_event_source.h" 10 #include "ui/events/platform/platform_event_source.h"
12 #include "ui/gfx/geometry/point_f.h" 11 #include "ui/gfx/geometry/point_f.h"
12 #include "ui/ozone/public/event_factory_ozone.h"
13 13
14 namespace ui { 14 namespace ui {
15 15
16 class CacaConnection; 16 class CacaConnection;
17 17
18 class CacaEventFactory : public EventFactoryOzone, 18 class CacaEventFactory : public EventFactoryOzone,
19 public PlatformEventSource { 19 public PlatformEventSource {
20 public: 20 public:
21 CacaEventFactory(CacaConnection* connection); 21 CacaEventFactory(CacaConnection* connection);
22 virtual ~CacaEventFactory(); 22 virtual ~CacaEventFactory();
(...skipping 22 matching lines...) Expand all
45 gfx::PointF last_cursor_location_; 45 gfx::PointF last_cursor_location_;
46 46
47 int modifier_flags_; 47 int modifier_flags_;
48 48
49 DISALLOW_COPY_AND_ASSIGN(CacaEventFactory); 49 DISALLOW_COPY_AND_ASSIGN(CacaEventFactory);
50 }; 50 };
51 51
52 } // namespace ui 52 } // namespace ui
53 53
54 #endif // UI_OZONE_PLATFORM_CACA_CACA_EVENT_FACTORY_H_ 54 #endif // UI_OZONE_PLATFORM_CACA_CACA_EVENT_FACTORY_H_
OLDNEW
« no previous file with comments | « ui/ozone/ozone_platform.h ('k') | ui/ozone/platform/caca/caca_surface_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698