blob: 94ad22d2b988cddd418b975bf70cb3edbbd67500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2016 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.
#include "components/mus/ws/platform_display_init_params.h"
#include "components/mus/gles2/gpu_state.h"
#include "components/mus/surfaces/surfaces_state.h"
namespace mus {
namespace ws {
PlatformDisplayInitParams::PlatformDisplayInitParams() {}
PlatformDisplayInitParams::PlatformDisplayInitParams(
const PlatformDisplayInitParams& other) = default;
PlatformDisplayInitParams::~PlatformDisplayInitParams() {}
} // namespace ws
} // namespace mus
|