Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / ui / tabs / tab_strip_model_utils.h
blobb66ca395de825e3f944a8e51cb9c63d95a4d9088
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_TAB_STRIP_MODEL_UTILS_H_
6 #define CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_UTILS_H_
8 #include <set>
9 #include <string>
11 class TabStripModel;
13 namespace history {
14 class TopSites;
17 namespace chrome {
19 // Returns the index of the first tab that is blocked. This returns
20 // |model->count()| if no tab is blocked.
21 int IndexOfFirstBlockedTab(const TabStripModel* model);
23 // Creates a set containing the canonical URLs of the currently open tabs.
24 void GetOpenUrls(const TabStripModel& tabs,
25 const history::TopSites& top_sites,
26 std::set<std::string>* urls);
28 } // namespace chrome
30 #endif // CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_UTILS_H_