Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: chrome/browser/ui/tabs/tab_strip_model_utils.cc

Issue 815983002: Topsites become keyedService based. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comments Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/tabs/tab_strip_model_utils.h" 5 #include "chrome/browser/ui/tabs/tab_strip_model_utils.h"
6 6
7 #include "chrome/browser/history/top_sites.h" 7 #include "chrome/browser/history/top_sites.h"
8 #include "chrome/browser/ui/tabs/tab_strip_model.h" 8 #include "chrome/browser/ui/tabs/tab_strip_model.h"
9 #include "content/public/browser/web_contents.h" 9 #include "content/public/browser/web_contents.h"
10 10
11 namespace chrome { 11 namespace chrome {
12 12
13 void GetOpenUrls(const TabStripModel& tabs, 13 void GetOpenUrls(const TabStripModel& tabs,
14 const history::TopSites& top_sites, 14 history::TopSites& top_sites,
Bernhard Bauer 2015/01/12 15:52:50 Here also.
sdefresne 2015/01/12 17:24:24 Please just revert changes to this file.
15 std::set<std::string>* urls) { 15 std::set<std::string>* urls) {
16 for (int i = 0; i < tabs.count(); ++i) { 16 for (int i = 0; i < tabs.count(); ++i) {
17 content::WebContents* web_contents = tabs.GetWebContentsAt(i); 17 content::WebContents* web_contents = tabs.GetWebContentsAt(i);
18 if (web_contents) 18 if (web_contents)
19 urls->insert(top_sites.GetCanonicalURLString(web_contents->GetURL())); 19 urls->insert(top_sites.GetCanonicalURLString(web_contents->GetURL()));
20 } 20 }
21 } 21 }
22 22
23 } // namespace chrome 23 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698