| OLD | NEW |
| 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 #include "ui/ozone/platform/caca/ozone_platform_caca.h" | 5 #include "ui/ozone/platform/caca/ozone_platform_caca.h" |
| 6 | 6 |
| 7 #include "ui/base/cursor/ozone/cursor_factory_ozone.h" | 7 #include "ui/base/cursor/ozone/cursor_factory_ozone.h" |
| 8 #include "ui/ozone/ime/input_method_context_factory_ozone.h" |
| 8 #include "ui/ozone/ozone_platform.h" | 9 #include "ui/ozone/ozone_platform.h" |
| 9 #include "ui/ozone/platform/caca/caca_connection.h" | 10 #include "ui/ozone/platform/caca/caca_connection.h" |
| 10 #include "ui/ozone/platform/caca/caca_event_factory.h" | 11 #include "ui/ozone/platform/caca/caca_event_factory.h" |
| 11 #include "ui/ozone/platform/caca/caca_surface_factory.h" | 12 #include "ui/ozone/platform/caca/caca_surface_factory.h" |
| 12 | 13 |
| 13 #if defined(OS_CHROMEOS) | 14 #if defined(OS_CHROMEOS) |
| 14 #include "ui/ozone/common/chromeos/native_display_delegate_ozone.h" | 15 #include "ui/ozone/common/chromeos/native_display_delegate_ozone.h" |
| 15 #endif | 16 #endif |
| 16 | 17 |
| 17 namespace ui { | 18 namespace ui { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 CursorFactoryOzone cursor_factory_ozone_; | 57 CursorFactoryOzone cursor_factory_ozone_; |
| 57 | 58 |
| 58 DISALLOW_COPY_AND_ASSIGN(OzonePlatformCaca); | 59 DISALLOW_COPY_AND_ASSIGN(OzonePlatformCaca); |
| 59 }; | 60 }; |
| 60 | 61 |
| 61 } // namespace | 62 } // namespace |
| 62 | 63 |
| 63 OzonePlatform* CreateOzonePlatformCaca() { return new OzonePlatformCaca; } | 64 OzonePlatform* CreateOzonePlatformCaca() { return new OzonePlatformCaca; } |
| 64 | 65 |
| 65 } // namespace ui | 66 } // namespace ui |
| OLD | NEW |