blob: 89f0c12eee1b1a7e2f6c88eff83c7b8e883ec158 [file] [log] [blame]
Xi Han4fbe7c32018-07-10 22:09:121// Copyright 2018 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CONTENT_PUBLIC_BROWSER_STARTUP_DATA_H_
6#define CONTENT_PUBLIC_BROWSER_STARTUP_DATA_H_
7
8namespace content {
9
10// Data that //content routes through its embedder which should be handed back
11// to //content when the embedder launches it.
12struct StartupData {
13 virtual ~StartupData() = default;
14};
15
16} // namespace content
17
18#endif // CONTENT_PUBLIC_BROWSER_STARTUP_DATA_H_