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

Unified Diff: ui/ozone/common/gpu/ozone_gpu_messages.h

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/ozone/common/gpu/ozone_gpu_message_params.cc ('k') | ui/ozone/common/native_display_delegate_ozone.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/common/gpu/ozone_gpu_messages.h
diff --git a/ui/ozone/common/gpu/ozone_gpu_messages.h b/ui/ozone/common/gpu/ozone_gpu_messages.h
deleted file mode 100644
index 86cd286de92413ed682096c32831bfefc473eb78..0000000000000000000000000000000000000000
--- a/ui/ozone/common/gpu/ozone_gpu_messages.h
+++ /dev/null
@@ -1,103 +0,0 @@
-// Copyright 2014 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.
-
-// Multiply-included message file, hence no include guard here, but see below
-// for a much smaller-than-usual include guard section.
-
-#include <vector>
-
-#include "ipc/ipc_message_macros.h"
-#include "third_party/skia/include/core/SkBitmap.h"
-#include "ui/gfx/geometry/point.h"
-#include "ui/gfx/geometry/rect.h"
-#include "ui/gfx/ipc/gfx_param_traits.h"
-#include "ui/gfx/native_widget_types.h"
-#include "ui/ozone/common/gpu/ozone_gpu_message_params.h"
-#include "ui/ozone/ozone_export.h"
-
-#undef IPC_MESSAGE_EXPORT
-#define IPC_MESSAGE_EXPORT OZONE_EXPORT
-
-#define IPC_MESSAGE_START OzoneGpuMsgStart
-
-IPC_ENUM_TRAITS_MAX_VALUE(ui::DisplayConnectionType,
- ui::DISPLAY_CONNECTION_TYPE_LAST)
-
-IPC_STRUCT_TRAITS_BEGIN(ui::DisplayMode_Params)
- IPC_STRUCT_TRAITS_MEMBER(size)
- IPC_STRUCT_TRAITS_MEMBER(is_interlaced)
- IPC_STRUCT_TRAITS_MEMBER(refresh_rate)
-IPC_STRUCT_TRAITS_END()
-
-IPC_STRUCT_TRAITS_BEGIN(ui::DisplaySnapshot_Params)
- IPC_STRUCT_TRAITS_MEMBER(display_id)
- IPC_STRUCT_TRAITS_MEMBER(has_proper_display_id)
- IPC_STRUCT_TRAITS_MEMBER(origin)
- IPC_STRUCT_TRAITS_MEMBER(physical_size)
- IPC_STRUCT_TRAITS_MEMBER(type)
- IPC_STRUCT_TRAITS_MEMBER(is_aspect_preserving_scaling)
- IPC_STRUCT_TRAITS_MEMBER(has_overscan)
- IPC_STRUCT_TRAITS_MEMBER(display_name)
- IPC_STRUCT_TRAITS_MEMBER(modes)
- IPC_STRUCT_TRAITS_MEMBER(has_current_mode)
- IPC_STRUCT_TRAITS_MEMBER(current_mode)
- IPC_STRUCT_TRAITS_MEMBER(has_native_mode)
- IPC_STRUCT_TRAITS_MEMBER(native_mode)
- IPC_STRUCT_TRAITS_MEMBER(string_representation)
-IPC_STRUCT_TRAITS_END()
-
-//------------------------------------------------------------------------------
-// GPU Messages
-// These are messages from the browser to the GPU process.
-
-// Update the HW cursor bitmap & move to specified location.
-IPC_MESSAGE_CONTROL4(OzoneGpuMsg_CursorSet,
- gfx::AcceleratedWidget,
- std::vector<SkBitmap>,
- gfx::Point /* location */,
- int /* frame_delay_ms */)
-
-// Move the HW cursor to the specified location.
-IPC_MESSAGE_CONTROL2(OzoneGpuMsg_CursorMove,
- gfx::AcceleratedWidget, gfx::Point)
-
-// Explicit creation of a WindowDelegate. We explicitly create the window
-// delegate such that any state change in the window is not lost while the
-// surface is created on the GPU side.
-IPC_MESSAGE_CONTROL1(OzoneGpuMsg_CreateWindowDelegate,
- gfx::AcceleratedWidget /* widget */)
-
-IPC_MESSAGE_CONTROL1(OzoneGpuMsg_DestroyWindowDelegate,
- gfx::AcceleratedWidget /* widget */)
-
-// Updates the location and size of the widget on the screen.
-IPC_MESSAGE_CONTROL2(OzoneGpuMsg_WindowBoundsChanged,
- gfx::AcceleratedWidget /* widget */,
- gfx::Rect /* bounds */)
-
-// Force the DPMS state of the display to on.
-IPC_MESSAGE_CONTROL0(OzoneGpuMsg_ForceDPMSOn)
-
-// Trigger a display reconfiguration. OzoneHostMsg_UpdateNativeDisplays will be
-// sent as a response.
-// The |displays| parameter will hold a list of last known displays.
-IPC_MESSAGE_CONTROL1(OzoneGpuMsg_RefreshNativeDisplays,
- std::vector<ui::DisplaySnapshot_Params> /* displays */)
-
-// Configure a display with the specified mode at the specified location.
-IPC_MESSAGE_CONTROL3(OzoneGpuMsg_ConfigureNativeDisplay,
- int64_t, // display ID
- ui::DisplayMode_Params, // display mode
- gfx::Point) // origin for the display
-
-IPC_MESSAGE_CONTROL1(OzoneGpuMsg_DisableNativeDisplay,
- int64_t) // display ID
-
-//------------------------------------------------------------------------------
-// Browser Messages
-// These messages are from the GPU to the browser process.
-
-// Updates the list of active displays.
-IPC_MESSAGE_CONTROL1(OzoneHostMsg_UpdateNativeDisplays,
- std::vector<ui::DisplaySnapshot_Params>)
« no previous file with comments | « ui/ozone/common/gpu/ozone_gpu_message_params.cc ('k') | ui/ozone/common/native_display_delegate_ozone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698