OLD | NEW |
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 #ifndef CHROME_BROWSER_UI_CHROME_PAGES_H_ | 5 #ifndef CHROME_BROWSER_UI_CHROME_PAGES_H_ |
6 #define CHROME_BROWSER_UI_CHROME_PAGES_H_ | 6 #define CHROME_BROWSER_UI_CHROME_PAGES_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
13 #include "chrome/browser/ui/host_desktop.h" | |
14 #include "components/content_settings/core/common/content_settings_types.h" | 13 #include "components/content_settings/core/common/content_settings_types.h" |
15 #include "url/gurl.h" | 14 #include "url/gurl.h" |
16 | 15 |
17 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 16 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
18 #include "chrome/browser/signin/signin_promo.h" | 17 #include "chrome/browser/signin/signin_promo.h" |
19 #endif | 18 #endif |
20 | 19 |
21 class Browser; | 20 class Browser; |
22 | 21 |
23 namespace content { | 22 namespace content { |
(...skipping 24 matching lines...) Expand all Loading... |
48 void ShowConflicts(Browser* browser); | 47 void ShowConflicts(Browser* browser); |
49 | 48 |
50 // ShowFeedbackPage() uses |browser| to determine the URL of the current tab. | 49 // ShowFeedbackPage() uses |browser| to determine the URL of the current tab. |
51 // |browser| should be NULL if there are no currently open browser windows. | 50 // |browser| should be NULL if there are no currently open browser windows. |
52 void ShowFeedbackPage(Browser* browser, | 51 void ShowFeedbackPage(Browser* browser, |
53 const std::string& description_template, | 52 const std::string& description_template, |
54 const std::string& category_tag); | 53 const std::string& category_tag); |
55 | 54 |
56 void ShowHelp(Browser* browser, HelpSource source); | 55 void ShowHelp(Browser* browser, HelpSource source); |
57 void ShowHelpForProfile(Profile* profile, | 56 void ShowHelpForProfile(Profile* profile, |
58 HostDesktopType host_desktop_type, | |
59 HelpSource source); | 57 HelpSource source); |
60 void ShowPolicy(Browser* browser); | 58 void ShowPolicy(Browser* browser); |
61 void ShowSlow(Browser* browser); | 59 void ShowSlow(Browser* browser); |
62 void ShowMemory(Browser* browser); | 60 void ShowMemory(Browser* browser); |
63 | 61 |
64 // Constructs a settings GURL for the specified |sub_page|. | 62 // Constructs a settings GURL for the specified |sub_page|. |
65 GURL GetSettingsUrl(const std::string& sub_page); | 63 GURL GetSettingsUrl(const std::string& sub_page); |
66 | 64 |
67 // Returns true if |url| is the URL for the settings subpage |sub_page|. | 65 // Returns true if |url| is the URL for the settings subpage |sub_page|. |
68 bool IsSettingsSubPage(const GURL& url, const std::string& sub_page); | 66 bool IsSettingsSubPage(const GURL& url, const std::string& sub_page); |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 98 |
101 // If the user is already signed in, shows the "Signin" portion of Settings, | 99 // If the user is already signed in, shows the "Signin" portion of Settings, |
102 // otherwise initiates signin in a new browser tab. | 100 // otherwise initiates signin in a new browser tab. |
103 void ShowBrowserSigninOrSettings(Browser* browser, | 101 void ShowBrowserSigninOrSettings(Browser* browser, |
104 signin_metrics::AccessPoint access_point); | 102 signin_metrics::AccessPoint access_point); |
105 #endif | 103 #endif |
106 | 104 |
107 } // namespace chrome | 105 } // namespace chrome |
108 | 106 |
109 #endif // CHROME_BROWSER_UI_CHROME_PAGES_H_ | 107 #endif // CHROME_BROWSER_UI_CHROME_PAGES_H_ |
OLD | NEW |