├── .DEPS.git ├── .gbp.conf ├── .gitignore ├── AUTHORS ├── LICENSE ├── OWNERS ├── README.md ├── media ├── DEPS ├── OWNERS ├── media_ozone_platform_wayland.cc ├── media_ozone_platform_wayland.h ├── va_wayland.sigs ├── va_wayland_stub_header.fragment ├── vaapi_picture.cc ├── vaapi_picture.h ├── vaapi_picture_wayland.cc ├── vaapi_picture_wayland.h ├── vaapi_wrapper.cc └── vaapi_wrapper.h ├── ozone_impl.gyp ├── packaging └── rpm │ ├── OWNERS │ ├── README │ ├── chromium-browser-ia32.sh │ ├── chromium-browser-x64.sh │ ├── chromium.manifest │ ├── chromium.spec │ ├── chromium.xml.in │ └── gbp-flat-tree.sh ├── patches ├── 0001-Browser-Support-Desktop-Aura-creation-on-Ozone.patch ├── 0002-Adapt-DesktopFactoryOzone-to-respect-ozone-platform-.patch ├── 0003-Add-support-to-provide-external-ozone-files-in-views.patch ├── 0004-Add-support-for-checking-DesktopWindow-with-Ozone-an.patch ├── 0005-Media-Build-VaapiPictureWayland-as-part-of-Media.patch ├── 0006-Fix-crash-when-switching-to-console-VT-mode.patch ├── 0007-Add-needed-support-in-PlatformWindow.patch ├── 0008-Add-file-picker-support-using-WebUI.patch ├── 0009-Media-Use-upstream-Video-Accelerator.patch ├── 0010-Remove-ATK-dependency.patch ├── 0011-Gardening-Adopt-to-https-codereview.chromium.org-129.patch ├── 0012-Use-InputMethodAuraLinux-for-Ozone-implementations-o.patch ├── 0013-Add-drag-and-drop-interfaces-to-PlatformWindowDelega.patch ├── 0014-Adapt-to-https-codereview.chromium.org-1409823002.patch └── patch-chromium.sh ├── platform ├── DEPS ├── OWNERS ├── client_native_pixmap_factory_wayland.cc ├── client_native_pixmap_factory_wayland.h ├── desktop_platform_screen.h ├── desktop_platform_screen_delegate.h ├── message_generator.cc ├── message_generator.h ├── messages.h ├── ozone_export_wayland.h ├── ozone_gpu_platform_support_host.cc ├── ozone_gpu_platform_support_host.h ├── ozone_platform_wayland.cc ├── ozone_platform_wayland.h ├── ozone_wayland_window.cc ├── ozone_wayland_window.h ├── window_constants.h ├── window_manager_wayland.cc └── window_manager_wayland.h ├── supplement.gypi ├── tools ├── OWNERS ├── check-coding-style.sh ├── export-chromium-browser-binary.txt └── jhbuild │ ├── install-dependencies │ ├── wayland.jhbuildrc │ └── wayland.modules ├── ui ├── DEPS ├── OWNERS ├── desktop_aura │ ├── DEPS │ ├── OWNERS │ ├── desktop_drag_drop_client_wayland.cc │ ├── desktop_drag_drop_client_wayland.h │ ├── desktop_factory_ozone_stubs.cc │ ├── desktop_factory_ozone_stubs.h │ ├── desktop_factory_ozone_wayland.cc │ ├── desktop_factory_ozone_wayland.h │ ├── desktop_screen_wayland.cc │ ├── desktop_screen_wayland.h │ ├── desktop_window_tree_host_ozone.cc │ ├── desktop_window_tree_host_ozone.h │ ├── impl_view.gypi │ ├── ozone_util.cc │ └── ozone_util.h ├── ui.gypi └── webui │ ├── OWNERS │ ├── file_picker_web_dialog.h │ ├── input_method_context_impl_wayland.cc │ ├── input_method_context_impl_wayland.h │ ├── ozone_webui.cc │ ├── ozone_webui.h │ ├── select_file_dialog_impl_webui.cc │ ├── select_file_dialog_impl_webui.h │ └── webui.gypi └── wayland ├── DEPS ├── OWNERS ├── data_device.cc ├── data_device.h ├── data_offer.cc ├── data_offer.h ├── display.cc ├── display.h ├── display_poll_thread.cc ├── display_poll_thread.h ├── egl ├── OWNERS ├── egl_window.cc ├── egl_window.h ├── surface_ozone_wayland.cc ├── surface_ozone_wayland.h ├── wayland_pixmap.cc └── wayland_pixmap.h ├── input ├── OWNERS ├── cursor.cc ├── cursor.h ├── keyboard.cc ├── keyboard.h ├── pointer.cc ├── pointer.h ├── text_input.cc ├── text_input.h ├── touchscreen.cc └── touchscreen.h ├── ozone_wayland_screen.cc ├── ozone_wayland_screen.h ├── protocol ├── OWNERS ├── ivi-application-client-protocol.h ├── ivi-application-protocol.c ├── text-client-protocol.h ├── text-protocol.c ├── wayland-drm-protocol.cc ├── wayland-drm-protocol.h ├── xdg-shell-client-protocol.h └── xdg-shell-protocol.c ├── screen.cc ├── screen.h ├── seat.cc ├── seat.h ├── shell ├── OWNERS ├── ivi_shell_surface.cc ├── ivi_shell_surface.h ├── shell.cc ├── shell.h ├── shell_surface.cc ├── shell_surface.h ├── wl_shell_surface.cc ├── wl_shell_surface.h ├── xdg_shell_surface.cc └── xdg_shell_surface.h ├── wayland.gyp ├── window.cc └── window.h /.DEPS.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/.DEPS.git -------------------------------------------------------------------------------- /.gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/.gbp.conf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/README.md -------------------------------------------------------------------------------- /media/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/DEPS -------------------------------------------------------------------------------- /media/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/OWNERS -------------------------------------------------------------------------------- /media/media_ozone_platform_wayland.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/media_ozone_platform_wayland.cc -------------------------------------------------------------------------------- /media/media_ozone_platform_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/media_ozone_platform_wayland.h -------------------------------------------------------------------------------- /media/va_wayland.sigs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/va_wayland.sigs -------------------------------------------------------------------------------- /media/va_wayland_stub_header.fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/va_wayland_stub_header.fragment -------------------------------------------------------------------------------- /media/vaapi_picture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/vaapi_picture.cc -------------------------------------------------------------------------------- /media/vaapi_picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/vaapi_picture.h -------------------------------------------------------------------------------- /media/vaapi_picture_wayland.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/vaapi_picture_wayland.cc -------------------------------------------------------------------------------- /media/vaapi_picture_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/vaapi_picture_wayland.h -------------------------------------------------------------------------------- /media/vaapi_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/vaapi_wrapper.cc -------------------------------------------------------------------------------- /media/vaapi_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/media/vaapi_wrapper.h -------------------------------------------------------------------------------- /ozone_impl.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ozone_impl.gyp -------------------------------------------------------------------------------- /packaging/rpm/OWNERS: -------------------------------------------------------------------------------- 1 | joone.hur@intel.com 2 | -------------------------------------------------------------------------------- /packaging/rpm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/packaging/rpm/README -------------------------------------------------------------------------------- /packaging/rpm/chromium-browser-ia32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/packaging/rpm/chromium-browser-ia32.sh -------------------------------------------------------------------------------- /packaging/rpm/chromium-browser-x64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/packaging/rpm/chromium-browser-x64.sh -------------------------------------------------------------------------------- /packaging/rpm/chromium.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/packaging/rpm/chromium.manifest -------------------------------------------------------------------------------- /packaging/rpm/chromium.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/packaging/rpm/chromium.spec -------------------------------------------------------------------------------- /packaging/rpm/chromium.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/packaging/rpm/chromium.xml.in -------------------------------------------------------------------------------- /packaging/rpm/gbp-flat-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/packaging/rpm/gbp-flat-tree.sh -------------------------------------------------------------------------------- /patches/0001-Browser-Support-Desktop-Aura-creation-on-Ozone.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0001-Browser-Support-Desktop-Aura-creation-on-Ozone.patch -------------------------------------------------------------------------------- /patches/0002-Adapt-DesktopFactoryOzone-to-respect-ozone-platform-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0002-Adapt-DesktopFactoryOzone-to-respect-ozone-platform-.patch -------------------------------------------------------------------------------- /patches/0003-Add-support-to-provide-external-ozone-files-in-views.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0003-Add-support-to-provide-external-ozone-files-in-views.patch -------------------------------------------------------------------------------- /patches/0004-Add-support-for-checking-DesktopWindow-with-Ozone-an.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0004-Add-support-for-checking-DesktopWindow-with-Ozone-an.patch -------------------------------------------------------------------------------- /patches/0005-Media-Build-VaapiPictureWayland-as-part-of-Media.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0005-Media-Build-VaapiPictureWayland-as-part-of-Media.patch -------------------------------------------------------------------------------- /patches/0006-Fix-crash-when-switching-to-console-VT-mode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0006-Fix-crash-when-switching-to-console-VT-mode.patch -------------------------------------------------------------------------------- /patches/0007-Add-needed-support-in-PlatformWindow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0007-Add-needed-support-in-PlatformWindow.patch -------------------------------------------------------------------------------- /patches/0008-Add-file-picker-support-using-WebUI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0008-Add-file-picker-support-using-WebUI.patch -------------------------------------------------------------------------------- /patches/0009-Media-Use-upstream-Video-Accelerator.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0009-Media-Use-upstream-Video-Accelerator.patch -------------------------------------------------------------------------------- /patches/0010-Remove-ATK-dependency.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0010-Remove-ATK-dependency.patch -------------------------------------------------------------------------------- /patches/0011-Gardening-Adopt-to-https-codereview.chromium.org-129.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0011-Gardening-Adopt-to-https-codereview.chromium.org-129.patch -------------------------------------------------------------------------------- /patches/0012-Use-InputMethodAuraLinux-for-Ozone-implementations-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0012-Use-InputMethodAuraLinux-for-Ozone-implementations-o.patch -------------------------------------------------------------------------------- /patches/0013-Add-drag-and-drop-interfaces-to-PlatformWindowDelega.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0013-Add-drag-and-drop-interfaces-to-PlatformWindowDelega.patch -------------------------------------------------------------------------------- /patches/0014-Adapt-to-https-codereview.chromium.org-1409823002.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/0014-Adapt-to-https-codereview.chromium.org-1409823002.patch -------------------------------------------------------------------------------- /patches/patch-chromium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/patches/patch-chromium.sh -------------------------------------------------------------------------------- /platform/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/DEPS -------------------------------------------------------------------------------- /platform/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/OWNERS -------------------------------------------------------------------------------- /platform/client_native_pixmap_factory_wayland.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/client_native_pixmap_factory_wayland.cc -------------------------------------------------------------------------------- /platform/client_native_pixmap_factory_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/client_native_pixmap_factory_wayland.h -------------------------------------------------------------------------------- /platform/desktop_platform_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/desktop_platform_screen.h -------------------------------------------------------------------------------- /platform/desktop_platform_screen_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/desktop_platform_screen_delegate.h -------------------------------------------------------------------------------- /platform/message_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/message_generator.cc -------------------------------------------------------------------------------- /platform/message_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/message_generator.h -------------------------------------------------------------------------------- /platform/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/messages.h -------------------------------------------------------------------------------- /platform/ozone_export_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/ozone_export_wayland.h -------------------------------------------------------------------------------- /platform/ozone_gpu_platform_support_host.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/ozone_gpu_platform_support_host.cc -------------------------------------------------------------------------------- /platform/ozone_gpu_platform_support_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/ozone_gpu_platform_support_host.h -------------------------------------------------------------------------------- /platform/ozone_platform_wayland.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/ozone_platform_wayland.cc -------------------------------------------------------------------------------- /platform/ozone_platform_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/ozone_platform_wayland.h -------------------------------------------------------------------------------- /platform/ozone_wayland_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/ozone_wayland_window.cc -------------------------------------------------------------------------------- /platform/ozone_wayland_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/ozone_wayland_window.h -------------------------------------------------------------------------------- /platform/window_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/window_constants.h -------------------------------------------------------------------------------- /platform/window_manager_wayland.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/window_manager_wayland.cc -------------------------------------------------------------------------------- /platform/window_manager_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/platform/window_manager_wayland.h -------------------------------------------------------------------------------- /supplement.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/supplement.gypi -------------------------------------------------------------------------------- /tools/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/tools/OWNERS -------------------------------------------------------------------------------- /tools/check-coding-style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/tools/check-coding-style.sh -------------------------------------------------------------------------------- /tools/export-chromium-browser-binary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/tools/export-chromium-browser-binary.txt -------------------------------------------------------------------------------- /tools/jhbuild/install-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/tools/jhbuild/install-dependencies -------------------------------------------------------------------------------- /tools/jhbuild/wayland.jhbuildrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/tools/jhbuild/wayland.jhbuildrc -------------------------------------------------------------------------------- /tools/jhbuild/wayland.modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/tools/jhbuild/wayland.modules -------------------------------------------------------------------------------- /ui/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/DEPS -------------------------------------------------------------------------------- /ui/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/OWNERS -------------------------------------------------------------------------------- /ui/desktop_aura/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/DEPS -------------------------------------------------------------------------------- /ui/desktop_aura/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/OWNERS -------------------------------------------------------------------------------- /ui/desktop_aura/desktop_drag_drop_client_wayland.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/desktop_drag_drop_client_wayland.cc -------------------------------------------------------------------------------- /ui/desktop_aura/desktop_drag_drop_client_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/desktop_drag_drop_client_wayland.h -------------------------------------------------------------------------------- /ui/desktop_aura/desktop_factory_ozone_stubs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/desktop_factory_ozone_stubs.cc -------------------------------------------------------------------------------- /ui/desktop_aura/desktop_factory_ozone_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/desktop_factory_ozone_stubs.h -------------------------------------------------------------------------------- /ui/desktop_aura/desktop_factory_ozone_wayland.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/desktop_factory_ozone_wayland.cc -------------------------------------------------------------------------------- /ui/desktop_aura/desktop_factory_ozone_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/desktop_factory_ozone_wayland.h -------------------------------------------------------------------------------- /ui/desktop_aura/desktop_screen_wayland.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/desktop_screen_wayland.cc -------------------------------------------------------------------------------- /ui/desktop_aura/desktop_screen_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/desktop_screen_wayland.h -------------------------------------------------------------------------------- /ui/desktop_aura/desktop_window_tree_host_ozone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/desktop_window_tree_host_ozone.cc -------------------------------------------------------------------------------- /ui/desktop_aura/desktop_window_tree_host_ozone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/desktop_window_tree_host_ozone.h -------------------------------------------------------------------------------- /ui/desktop_aura/impl_view.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/impl_view.gypi -------------------------------------------------------------------------------- /ui/desktop_aura/ozone_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/ozone_util.cc -------------------------------------------------------------------------------- /ui/desktop_aura/ozone_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/desktop_aura/ozone_util.h -------------------------------------------------------------------------------- /ui/ui.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/ui.gypi -------------------------------------------------------------------------------- /ui/webui/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/webui/OWNERS -------------------------------------------------------------------------------- /ui/webui/file_picker_web_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/webui/file_picker_web_dialog.h -------------------------------------------------------------------------------- /ui/webui/input_method_context_impl_wayland.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/webui/input_method_context_impl_wayland.cc -------------------------------------------------------------------------------- /ui/webui/input_method_context_impl_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/webui/input_method_context_impl_wayland.h -------------------------------------------------------------------------------- /ui/webui/ozone_webui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/webui/ozone_webui.cc -------------------------------------------------------------------------------- /ui/webui/ozone_webui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/webui/ozone_webui.h -------------------------------------------------------------------------------- /ui/webui/select_file_dialog_impl_webui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/webui/select_file_dialog_impl_webui.cc -------------------------------------------------------------------------------- /ui/webui/select_file_dialog_impl_webui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/webui/select_file_dialog_impl_webui.h -------------------------------------------------------------------------------- /ui/webui/webui.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/ui/webui/webui.gypi -------------------------------------------------------------------------------- /wayland/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/DEPS -------------------------------------------------------------------------------- /wayland/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/OWNERS -------------------------------------------------------------------------------- /wayland/data_device.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/data_device.cc -------------------------------------------------------------------------------- /wayland/data_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/data_device.h -------------------------------------------------------------------------------- /wayland/data_offer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/data_offer.cc -------------------------------------------------------------------------------- /wayland/data_offer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/data_offer.h -------------------------------------------------------------------------------- /wayland/display.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/display.cc -------------------------------------------------------------------------------- /wayland/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/display.h -------------------------------------------------------------------------------- /wayland/display_poll_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/display_poll_thread.cc -------------------------------------------------------------------------------- /wayland/display_poll_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/display_poll_thread.h -------------------------------------------------------------------------------- /wayland/egl/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/egl/OWNERS -------------------------------------------------------------------------------- /wayland/egl/egl_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/egl/egl_window.cc -------------------------------------------------------------------------------- /wayland/egl/egl_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/egl/egl_window.h -------------------------------------------------------------------------------- /wayland/egl/surface_ozone_wayland.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/egl/surface_ozone_wayland.cc -------------------------------------------------------------------------------- /wayland/egl/surface_ozone_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/egl/surface_ozone_wayland.h -------------------------------------------------------------------------------- /wayland/egl/wayland_pixmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/egl/wayland_pixmap.cc -------------------------------------------------------------------------------- /wayland/egl/wayland_pixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/egl/wayland_pixmap.h -------------------------------------------------------------------------------- /wayland/input/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/OWNERS -------------------------------------------------------------------------------- /wayland/input/cursor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/cursor.cc -------------------------------------------------------------------------------- /wayland/input/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/cursor.h -------------------------------------------------------------------------------- /wayland/input/keyboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/keyboard.cc -------------------------------------------------------------------------------- /wayland/input/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/keyboard.h -------------------------------------------------------------------------------- /wayland/input/pointer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/pointer.cc -------------------------------------------------------------------------------- /wayland/input/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/pointer.h -------------------------------------------------------------------------------- /wayland/input/text_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/text_input.cc -------------------------------------------------------------------------------- /wayland/input/text_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/text_input.h -------------------------------------------------------------------------------- /wayland/input/touchscreen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/touchscreen.cc -------------------------------------------------------------------------------- /wayland/input/touchscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/input/touchscreen.h -------------------------------------------------------------------------------- /wayland/ozone_wayland_screen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/ozone_wayland_screen.cc -------------------------------------------------------------------------------- /wayland/ozone_wayland_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/ozone_wayland_screen.h -------------------------------------------------------------------------------- /wayland/protocol/OWNERS: -------------------------------------------------------------------------------- 1 | kalyan.kondapally@intel.com 2 | -------------------------------------------------------------------------------- /wayland/protocol/ivi-application-client-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/protocol/ivi-application-client-protocol.h -------------------------------------------------------------------------------- /wayland/protocol/ivi-application-protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/protocol/ivi-application-protocol.c -------------------------------------------------------------------------------- /wayland/protocol/text-client-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/protocol/text-client-protocol.h -------------------------------------------------------------------------------- /wayland/protocol/text-protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/protocol/text-protocol.c -------------------------------------------------------------------------------- /wayland/protocol/wayland-drm-protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/protocol/wayland-drm-protocol.cc -------------------------------------------------------------------------------- /wayland/protocol/wayland-drm-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/protocol/wayland-drm-protocol.h -------------------------------------------------------------------------------- /wayland/protocol/xdg-shell-client-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/protocol/xdg-shell-client-protocol.h -------------------------------------------------------------------------------- /wayland/protocol/xdg-shell-protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/protocol/xdg-shell-protocol.c -------------------------------------------------------------------------------- /wayland/screen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/screen.cc -------------------------------------------------------------------------------- /wayland/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/screen.h -------------------------------------------------------------------------------- /wayland/seat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/seat.cc -------------------------------------------------------------------------------- /wayland/seat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/seat.h -------------------------------------------------------------------------------- /wayland/shell/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/OWNERS -------------------------------------------------------------------------------- /wayland/shell/ivi_shell_surface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/ivi_shell_surface.cc -------------------------------------------------------------------------------- /wayland/shell/ivi_shell_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/ivi_shell_surface.h -------------------------------------------------------------------------------- /wayland/shell/shell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/shell.cc -------------------------------------------------------------------------------- /wayland/shell/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/shell.h -------------------------------------------------------------------------------- /wayland/shell/shell_surface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/shell_surface.cc -------------------------------------------------------------------------------- /wayland/shell/shell_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/shell_surface.h -------------------------------------------------------------------------------- /wayland/shell/wl_shell_surface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/wl_shell_surface.cc -------------------------------------------------------------------------------- /wayland/shell/wl_shell_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/wl_shell_surface.h -------------------------------------------------------------------------------- /wayland/shell/xdg_shell_surface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/xdg_shell_surface.cc -------------------------------------------------------------------------------- /wayland/shell/xdg_shell_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/shell/xdg_shell_surface.h -------------------------------------------------------------------------------- /wayland/wayland.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/wayland.gyp -------------------------------------------------------------------------------- /wayland/window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/window.cc -------------------------------------------------------------------------------- /wayland/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/ozone-wayland/HEAD/wayland/window.h --------------------------------------------------------------------------------