OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_STARTUP_STARTUP_TAB_H_ | 5 #ifndef CHROME_BROWSER_UI_STARTUP_STARTUP_TAB_H_ |
6 #define CHROME_BROWSER_UI_STARTUP_STARTUP_TAB_H_ | 6 #define CHROME_BROWSER_UI_STARTUP_STARTUP_TAB_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 15 matching lines...) Expand all Loading... |
26 // True if the is tab pinned. | 26 // True if the is tab pinned. |
27 bool is_pinned; | 27 bool is_pinned; |
28 | 28 |
29 // Id of the app. | 29 // Id of the app. |
30 std::string app_id; | 30 std::string app_id; |
31 }; | 31 }; |
32 | 32 |
33 typedef std::vector<StartupTab> StartupTabs; | 33 typedef std::vector<StartupTab> StartupTabs; |
34 | 34 |
35 #endif // CHROME_BROWSER_UI_STARTUP_STARTUP_TAB_H_ | 35 #endif // CHROME_BROWSER_UI_STARTUP_STARTUP_TAB_H_ |
OLD | NEW |