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.
4
5#ifndef CHROME_BROWSER_UI_BROWSER_MAC_H_
6#define CHROME_BROWSER_UI_BROWSER_MAC_H_
7
8#include "chrome/browser/signin/signin_promo.h"
9#include "chrome/browser/ui/chrome_pages.h"
10
11class Profile;
12
13namespace chrome {
14
15// Open a new window with history/downloads/help/options (needed on Mac when
16// there are no windows).
17void OpenAboutWindow(Profile* profile);
18void OpenHistoryWindow(Profile* profile);
19void OpenDownloadsWindow(Profile* profile);
20void OpenHelpWindow(Profile* profile, HelpSource source);
21void OpenOptionsWindow(Profile* profile);
22void OpenSyncSetupWindow(Profile* profile, signin::Source source);
23void OpenClearBrowsingDataDialogWindow(Profile* profile);
24void OpenImportSettingsDialogWindow(Profile* profile);
25void OpenBookmarkManagerWindow(Profile* profile);
26void OpenExtensionsWindow(Profile* profile);
27
28}  // namespace chrome
29
30#endif  // CHROME_BROWSER_UI_BROWSER_MAC_H_
31