Xi Han | 4fbe7c3 | 2018-07-10 22:09:12 | [diff] [blame] | 1 | // 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 | |
| 8 | namespace content { |
| 9 | |
| 10 | // Data that //content routes through its embedder which should be handed back |
| 11 | // to //content when the embedder launches it. |
| 12 | struct StartupData { |
| 13 | virtual ~StartupData() = default; |
| 14 | }; |
| 15 | |
| 16 | } // namespace content |
| 17 | |
| 18 | #endif // CONTENT_PUBLIC_BROWSER_STARTUP_DATA_H_ |