| Index: chrome/browser/custom_home_pages_table_model.h
|
| diff --git a/chrome/browser/custom_home_pages_table_model.h b/chrome/browser/custom_home_pages_table_model.h
|
| index 9c649fa37e06dedfccdc01d1dc09621d254faac6..384fb54c252c38f0b672c606eb2aab3c6fe99ef9 100644
|
| --- a/chrome/browser/custom_home_pages_table_model.h
|
| +++ b/chrome/browser/custom_home_pages_table_model.h
|
| @@ -18,6 +18,10 @@ class Browser;
|
| class GURL;
|
| class Profile;
|
|
|
| +namespace content {
|
| +class WebContents;
|
| +}
|
| +
|
| namespace history {
|
| class URLRow;
|
| }
|
| @@ -49,8 +53,8 @@ class CustomHomePagesTableModel : public ui::TableModel {
|
| void Remove(int index);
|
|
|
| // Clears any entries and fills the list with pages currently opened in the
|
| - // browser.
|
| - void SetToCurrentlyOpenPages();
|
| + // browser. |ignore_contents| is omitted from the open pages.
|
| + void SetToCurrentlyOpenPages(const content::WebContents* ignore_contents);
|
|
|
| // Returns the set of urls this model contains.
|
| std::vector<GURL> GetURLs();
|
|
|