| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "chrome/browser/signin/signin_promo.h" | 10 #include "chrome/browser/signin/signin_promo.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 HELP_SOURCE_WEBUI, | 32 HELP_SOURCE_WEBUI, |
| 33 }; | 33 }; |
| 34 | 34 |
| 35 | 35 |
| 36 void ShowBookmarkManager(Browser* browser); | 36 void ShowBookmarkManager(Browser* browser); |
| 37 void ShowBookmarkManagerForNode(Browser* browser, int64 node_id); | 37 void ShowBookmarkManagerForNode(Browser* browser, int64 node_id); |
| 38 void ShowHistory(Browser* browser); | 38 void ShowHistory(Browser* browser); |
| 39 void ShowDownloads(Browser* browser); | 39 void ShowDownloads(Browser* browser); |
| 40 void ShowExtensions(Browser* browser, | 40 void ShowExtensions(Browser* browser, |
| 41 const std::string& extension_to_highlight); | 41 const std::string& extension_to_highlight); |
| 42 void ShowExtensionOptions(Browser* browser, |
| 43 const std::string& extension_id); |
| 42 void ShowConflicts(Browser* browser); | 44 void ShowConflicts(Browser* browser); |
| 43 | 45 |
| 44 // ShowFeedbackPage() uses |browser| to determine the URL of the current tab. | 46 // ShowFeedbackPage() uses |browser| to determine the URL of the current tab. |
| 45 // |browser| should be NULL if there are no currently open browser windows. | 47 // |browser| should be NULL if there are no currently open browser windows. |
| 46 void ShowFeedbackPage(Browser* browser, | 48 void ShowFeedbackPage(Browser* browser, |
| 47 const std::string& description_template, | 49 const std::string& description_template, |
| 48 const std::string& category_tag); | 50 const std::string& category_tag); |
| 49 | 51 |
| 50 void ShowHelp(Browser* browser, HelpSource source); | 52 void ShowHelp(Browser* browser, HelpSource source); |
| 51 void ShowHelpForProfile(Profile* profile, | 53 void ShowHelpForProfile(Profile* profile, |
| (...skipping 24 matching lines...) Expand all Loading... |
| 76 void ShowImportDialog(Browser* browser); | 78 void ShowImportDialog(Browser* browser); |
| 77 void ShowAboutChrome(Browser* browser); | 79 void ShowAboutChrome(Browser* browser); |
| 78 void ShowSearchEngineSettings(Browser* browser); | 80 void ShowSearchEngineSettings(Browser* browser); |
| 79 // If the user is already signed in, shows the "Signin" portion of Settings, | 81 // If the user is already signed in, shows the "Signin" portion of Settings, |
| 80 // otherwise initiates signin. | 82 // otherwise initiates signin. |
| 81 void ShowBrowserSignin(Browser* browser, signin::Source source); | 83 void ShowBrowserSignin(Browser* browser, signin::Source source); |
| 82 | 84 |
| 83 } // namespace chrome | 85 } // namespace chrome |
| 84 | 86 |
| 85 #endif // CHROME_BROWSER_UI_CHROME_PAGES_H_ | 87 #endif // CHROME_BROWSER_UI_CHROME_PAGES_H_ |
| OLD | NEW |