| Index: chrome/browser/ui/browser_finder.h
|
| diff --git a/chrome/browser/ui/browser_finder.h b/chrome/browser/ui/browser_finder.h
|
| index 8401ebbd41da072ec1e4a85d2a54316c15af4d26..6039a65536f4927524bdebccb458c2f1c7b15538 100644
|
| --- a/chrome/browser/ui/browser_finder.h
|
| +++ b/chrome/browser/ui/browser_finder.h
|
| @@ -82,11 +82,17 @@ Browser* FindLastActiveWithHostDesktopType(HostDesktopType type);
|
| // Returns the number of browsers across all profiles and desktops.
|
| size_t GetTotalBrowserCount();
|
|
|
| -// Returns the number of browsers with the Profile |profile|.
|
| -size_t GetBrowserCount(Profile* profile);
|
| +// Returns the number of browsers with the Profile |profile| accross all
|
| +// desktops.
|
| +size_t GetTotalBrowserCountForProfile(Profile* profile);
|
|
|
| -// Returns the number of tabbed browsers with the Profile |profile|.
|
| -size_t GetTabbedBrowserCount(Profile* profile);
|
| +// Returns the number of browsers with the Profile |profile| on the desktop
|
| +// defined by |type|.
|
| +size_t GetBrowserCount(Profile* profile, HostDesktopType type);
|
| +
|
| +// Returns the number of tabbed browsers with the Profile |profile| on the
|
| +// desktop defined by |type|.
|
| +size_t GetTabbedBrowserCount(Profile* profile, HostDesktopType type);
|
|
|
| } // namespace chrome
|
|
|
|
|