| Index: chrome/browser/tabs/pinned_tab_test_utils.cc
|
| ===================================================================
|
| --- chrome/browser/tabs/pinned_tab_test_utils.cc (revision 136582)
|
| +++ chrome/browser/tabs/pinned_tab_test_utils.cc (working copy)
|
| @@ -4,11 +4,9 @@
|
|
|
| #include "chrome/browser/tabs/pinned_tab_test_utils.h"
|
|
|
| -typedef StartupBrowserCreator::LaunchWithProfile::Tab Tab;
|
| -
|
| namespace {
|
|
|
| -std::string TabToString(const Tab& tab) {
|
| +std::string TabToString(const StartupTab& tab) {
|
| return tab.url.spec() + ":" + (tab.is_app ? "app" : "") + ":" +
|
| (tab.is_pinned ? "pinned" : "") + ":" + tab.app_id;
|
| }
|
| @@ -17,7 +15,7 @@
|
|
|
| // static
|
| std::string PinnedTabTestUtils::TabsToString(
|
| - const std::vector<StartupBrowserCreator::LaunchWithProfile::Tab>& values) {
|
| + const std::vector<StartupTab>& values) {
|
| std::string result;
|
| for (size_t i = 0; i < values.size(); ++i) {
|
| if (i != 0)
|
|
|