
The methodology used to generate this CL is documented in https://crbug.com/1098010#c34. No-Try: true No-Presubmit: true Bug: 1098010 Change-Id: I8c0f009d16350271f07d8e5e561085822cc9dd27 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3895935 Owners-Override: Avi Drissman <avi@chromium.org> Reviewed-by: Mark Mentovai <mark@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org> Auto-Submit: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/main@{#1047456}
32 lines
1.3 KiB
C
32 lines
1.3 KiB
C
// Copyright 2019 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Singly or Multiply-included shared traits file depending on circumstances.
|
|
// This allows the use of IPC serialization macros in more than one IPC message
|
|
// file.
|
|
#ifndef CONTENT_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
|
|
#define CONTENT_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
|
|
|
|
#include "cc/trees/browser_controls_params.h"
|
|
#include "content/common/content_export.h"
|
|
#include "ipc/ipc_message_macros.h"
|
|
#include "services/device/public/mojom/screen_orientation_lock_types.mojom-shared.h"
|
|
#include "third_party/blink/public/common/widget/device_emulation_params.h"
|
|
#include "third_party/blink/public/common/widget/visual_properties.h"
|
|
|
|
#undef IPC_MESSAGE_EXPORT
|
|
#define IPC_MESSAGE_EXPORT CONTENT_EXPORT
|
|
|
|
// Traits for VisualProperties.
|
|
IPC_ENUM_TRAITS_MAX_VALUE(blink::mojom::EmulatedScreenType,
|
|
blink::mojom::EmulatedScreenType::kMaxValue)
|
|
|
|
IPC_ENUM_TRAITS_MAX_VALUE(device::mojom::ScreenOrientationLockType,
|
|
device::mojom::ScreenOrientationLockType::kMaxValue)
|
|
|
|
IPC_ENUM_TRAITS_MAX_VALUE(display::mojom::ScreenOrientation,
|
|
display::mojom::ScreenOrientation::kMaxValue)
|
|
|
|
#endif // CONTENT_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
|