app_shell: Add version number in user agent
[chromium-blink-merge.git] / chrome / browser / ui / tabs / pinned_tab_test_utils.h
blob640e03ced6e969032544e9853684a733cf3a7cc5
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_TABS_PINNED_TAB_TEST_UTILS_H_
6 #define CHROME_BROWSER_UI_TABS_PINNED_TAB_TEST_UTILS_H_
8 #include <string>
9 #include <vector>
11 #include "base/basictypes.h"
12 #include "chrome/browser/ui/startup/startup_tab.h"
14 class PinnedTabTestUtils {
15 public:
16 // Converts a set of Tabs into a string. The format is a space separated list
17 // of urls. If the tab is an app, ':app' is appended, and if the tab is
18 // pinned, ':pinned' is appended.
19 static std::string TabsToString(const std::vector<StartupTab>& values);
21 private:
22 DISALLOW_IMPLICIT_CONSTRUCTORS(PinnedTabTestUtils);
25 #endif // CHROME_BROWSER_UI_TABS_PINNED_TAB_TEST_UTILS_H_