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" |
11 #include "chrome/browser/ui/host_desktop.h" | 11 #include "chrome/browser/ui/host_desktop.h" |
12 #include "chrome/common/content_settings_types.h" | 12 #include "components/content_settings/core/common/content_settings_types.h" |
13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
14 | 14 |
15 class Browser; | 15 class Browser; |
16 | 16 |
17 namespace content { | 17 namespace content { |
18 class WebContents; | 18 class WebContents; |
19 } | 19 } |
20 | 20 |
21 namespace chrome { | 21 namespace chrome { |
22 | 22 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 void ShowImportDialog(Browser* browser); | 76 void ShowImportDialog(Browser* browser); |
77 void ShowAboutChrome(Browser* browser); | 77 void ShowAboutChrome(Browser* browser); |
78 void ShowSearchEngineSettings(Browser* browser); | 78 void ShowSearchEngineSettings(Browser* browser); |
79 // If the user is already signed in, shows the "Signin" portion of Settings, | 79 // If the user is already signed in, shows the "Signin" portion of Settings, |
80 // otherwise initiates signin. | 80 // otherwise initiates signin. |
81 void ShowBrowserSignin(Browser* browser, signin::Source source); | 81 void ShowBrowserSignin(Browser* browser, signin::Source source); |
82 | 82 |
83 } // namespace chrome | 83 } // namespace chrome |
84 | 84 |
85 #endif // CHROME_BROWSER_UI_CHROME_PAGES_H_ | 85 #endif // CHROME_BROWSER_UI_CHROME_PAGES_H_ |
OLD | NEW |