blob: 0a4225625ea12b2ba0db774b341dd92ca7631a7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/tabs/pinned_tab_test_utils.h"
namespace {
std::string TabToString(const StartupTab& tab) {
return tab.url.spec() + ":" + (tab.is_app ? "app" : "") + ":" +
(tab.is_pinned ? "pinned" : "") + ":" + tab.app_id;
}
} // namespace
// static
std::string PinnedTabTestUtils::TabsToString(
const std::vector<StartupTab>& values) {
std::string result;
for (size_t i = 0; i < values.size(); ++i) {
if (i != 0)
result += " ";
result += TabToString(values[i]);
}
return result;
}
|