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/ui/host_desktop.h" | 10 #include "chrome/browser/ui/host_desktop.h" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 const std::string& sub_page); | 77 const std::string& sub_page); |
78 void ShowClearBrowsingDataDialog(Browser* browser); | 78 void ShowClearBrowsingDataDialog(Browser* browser); |
79 void ShowPasswordManager(Browser* browser); | 79 void ShowPasswordManager(Browser* browser); |
80 void ShowImportDialog(Browser* browser); | 80 void ShowImportDialog(Browser* browser); |
81 void ShowAboutChrome(Browser* browser); | 81 void ShowAboutChrome(Browser* browser); |
82 void ShowSearchEngineSettings(Browser* browser); | 82 void ShowSearchEngineSettings(Browser* browser); |
83 | 83 |
84 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 84 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
85 // If the user is already signed in, shows the "Signin" portion of Settings, | 85 // If the user is already signed in, shows the "Signin" portion of Settings, |
86 // otherwise initiates signin. | 86 // otherwise initiates signin. |
87 void ShowBrowserSignin(Browser* browser, signin::Source source); | 87 void ShowBrowserSignin(Browser* browser, signin_metrics::Source source); |
88 #endif | 88 #endif |
89 | 89 |
90 } // namespace chrome | 90 } // namespace chrome |
91 | 91 |
92 #endif // CHROME_BROWSER_UI_CHROME_PAGES_H_ | 92 #endif // CHROME_BROWSER_UI_CHROME_PAGES_H_ |
OLD | NEW |