Chromium Code Reviews| 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 | 7 |
| 8 #include <string> | 8 #include <string> |
|
grt (UTC plus 2)
2016/09/09 11:40:30
nit: remove this unused include while you're here
| |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "url/gurl.h" | 11 #include "url/gurl.h" |
| 12 | 12 |
| 13 // Represents tab data at startup. | 13 // Represents tab data at startup. |
| 14 struct StartupTab { | 14 struct StartupTab { |
| 15 StartupTab(); | 15 StartupTab(); |
| 16 StartupTab(GURL url_, bool is_pinned_); | |
|
grt (UTC plus 2)
2016/09/09 11:40:30
no '_' in parameter names.
tmartino
2016/09/10 00:19:41
Changed to url_val and is_pinned_val, which feels
grt (UTC plus 2)
2016/09/12 07:28:46
url and is_pinned will work, no?
| |
| 16 ~StartupTab(); | 17 ~StartupTab(); |
| 17 | 18 |
| 18 // The url to load. | 19 // The url to load. |
| 19 GURL url; | 20 GURL url; |
| 20 | 21 |
| 21 // True if the is tab pinned. | 22 // True if the is tab pinned. |
| 22 bool is_pinned; | 23 bool is_pinned; |
| 23 }; | 24 }; |
| 24 | 25 |
| 25 typedef std::vector<StartupTab> StartupTabs; | 26 typedef std::vector<StartupTab> StartupTabs; |
| 26 | 27 |
| 27 #endif // CHROME_BROWSER_UI_STARTUP_STARTUP_TAB_H_ | 28 #endif // CHROME_BROWSER_UI_STARTUP_STARTUP_TAB_H_ |
| OLD | NEW |