Chromium Code Reviews| Index: ui/ozone/factories/cursor_factory_ozone.h |
| diff --git a/ui/base/cursor/ozone/cursor_factory_ozone.h b/ui/ozone/factories/cursor_factory_ozone.h |
| similarity index 84% |
| rename from ui/base/cursor/ozone/cursor_factory_ozone.h |
| rename to ui/ozone/factories/cursor_factory_ozone.h |
| index 23ac1132cfbc9f8b36dc93c83180ffd1bcfa02a4..00deb9a3485f41fda8d832da6eb095b26f419240 100644 |
| --- a/ui/base/cursor/ozone/cursor_factory_ozone.h |
| +++ b/ui/ozone/factories/cursor_factory_ozone.h |
| @@ -2,16 +2,21 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef UI_BASE_CURSOR_OZONE_CURSOR_FACTORY_OZONE_H_ |
| -#define UI_BASE_CURSOR_OZONE_CURSOR_FACTORY_OZONE_H_ |
| +#ifndef UI_OZONE_FACTORIES_CURSOR_FACTORY_OZONE_H_ |
| +#define UI_OZONE_FACTORIES_CURSOR_FACTORY_OZONE_H_ |
| -#include "ui/base/cursor/cursor.h" |
| -#include "ui/base/ui_base_export.h" |
| #include "ui/gfx/native_widget_types.h" |
| +#include "ui/ozone/ozone_base_export.h" |
| + |
| +namespace gfx { |
| +class Point; |
| +} |
| namespace ui { |
| -class UI_BASE_EXPORT CursorFactoryOzone { |
| +typedef void* PlatformCursor; |
|
sadrul
2014/06/07 19:16:28
This is somewhat unclean. We could call this Ozone
|
| + |
| +class OZONE_BASE_EXPORT CursorFactoryOzone { |
| public: |
| CursorFactoryOzone(); |
| virtual ~CursorFactoryOzone(); |
| @@ -49,6 +54,6 @@ class UI_BASE_EXPORT CursorFactoryOzone { |
| static CursorFactoryOzone* impl_; // not owned |
| }; |
| -} // namespace gfx |
| +} // namespace ui |
| -#endif // UI_BASE_CURSOR_OZONE_CURSOR_FACTORY_OZONE_H_ |
| +#endif // UI_OZONE_FACTORIES_CURSOR_FACTORY_OZONE_H_ |