Chromium Code Reviews| Index: chrome/browser/ui/startup/startup_tab.cc |
| diff --git a/chrome/browser/ui/startup/startup_tab.cc b/chrome/browser/ui/startup/startup_tab.cc |
| index cda2d9453571489bab47236d48408862d6dfebdb..968bd433f425737691a5fbdb4e049e9849879ffc 100644 |
| --- a/chrome/browser/ui/startup/startup_tab.cc |
| +++ b/chrome/browser/ui/startup/startup_tab.cc |
| @@ -8,5 +8,8 @@ StartupTab::StartupTab() |
| : is_pinned(true) { |
| } |
| +StartupTab::StartupTab(GURL url_, bool is_pinned_) |
| + : url(url_), is_pinned(is_pinned_) {} |
|
grt (UTC plus 2)
2016/09/09 11:40:30
i was going to suggest using std::move to get the
|
| + |
| StartupTab::~StartupTab() { |
| } |