ash_window_tree_host_init_params.h revision cedac228d2dd51db4b79ea1e72c7f249408ee061
1b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot// Copyright 2014 The Chromium Authors. All rights reserved.
2b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot// Use of this source code is governed by a BSD-style license that can be
3b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot// found in the LICENSE file.
4b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
5b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#ifndef ASH_HOST_WINDOW_TREE_HOST_INIT_PARAMS_H_
6b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#define ASH_HOST_WINDOW_TREE_HOST_INIT_PARAMS_H_
7b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
8b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#include "build/build_config.h"
9b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
10b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#if defined(OS_WIN)
11b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#include <windows.h>
12b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#endif
13b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
14b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#include "ash/ash_export.h"
15b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#include "ui/gfx/geometry/rect.h"
16b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
17b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabotnamespace ash {
18b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
19b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabotstruct ASH_EXPORT AshWindowTreeHostInitParams {
20b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot  AshWindowTreeHostInitParams();
21b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot  ~AshWindowTreeHostInitParams();
22b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
23b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot  gfx::Rect initial_bounds;
24b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
25b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#if defined(OS_WIN)
26b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot  HWND remote_hwnd;
27b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#endif
28b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot};
29b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
30b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot}  // namespace ash
31b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot
32b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot#endif  // ASH_HOST_WINDOW_TREE_HOST_INIT_PARAMS_H_
33b3823db9f1192d8c81345740b3e65bd6738ba55bBrett Chabot