Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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_WEBUI_SETTINGS_UTILS_H_ | |
| 6 #define CHROME_BROWSER_UI_WEBUI_SETTINGS_UTILS_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 | |
| 10 namespace content { | |
| 11 class WebContents; | |
| 12 } | |
| 13 | |
| 14 namespace settings_utils { | |
| 15 | |
| 16 // Invoke UI for network proxy settings. | |
| 17 void ShowNetworkProxySettings(content::WebContents* web_contents); | |
| 18 | |
| 19 // Invoke UI for SSL certificates. | |
| 20 void ShowManageSSLCertificates(content::WebContents* web_contents); | |
|
Dan Beam
2016/03/11 20:28:56
this is why i sent to you
dpapad
2016/03/11 21:13:06
I see. For now the md-settings page always opens t
| |
| 21 | |
| 22 } // namespace settings_utils | |
| 23 | |
| 24 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_UTILS_H_ | |
| OLD | NEW |