| Index: chrome/browser/ui/webui/help/help_utils_chromeos.h
|
| diff --git a/chrome/browser/ui/webui/help/help_utils_chromeos.h b/chrome/browser/ui/webui/help/help_utils_chromeos.h
|
| index 1afb8c5b7a82993c0f7eb3ad208b3d596dfdda44..ec388efd4bf5e2b36a4f5b781a333e8c0c4ef77a 100644
|
| --- a/chrome/browser/ui/webui/help/help_utils_chromeos.h
|
| +++ b/chrome/browser/ui/webui/help/help_utils_chromeos.h
|
| @@ -5,10 +5,12 @@
|
| #ifndef CHROME_BROWSER_UI_WEBUI_HELP_HELP_UTILS_CHROMEOS_H_
|
| #define CHROME_BROWSER_UI_WEBUI_HELP_HELP_UTILS_CHROMEOS_H_
|
|
|
| -#include <string>
|
| -
|
| #include "base/strings/string16.h"
|
|
|
| +namespace chromeos {
|
| +class NetworkState;
|
| +}
|
| +
|
| namespace help_utils_chromeos {
|
|
|
| // Returns true if updates over cellular networks are allowed. If |interactive|
|
| @@ -19,7 +21,7 @@ namespace help_utils_chromeos {
|
| bool IsUpdateOverCellularAllowed(bool interactive);
|
|
|
| // Returns localized name for the connection |type|.
|
| -base::string16 GetConnectionTypeAsUTF16(const std::string& type);
|
| +base::string16 GetConnectionTypeAsUTF16(const chromeos::NetworkState* network);
|
|
|
| } // namespace help_utils_chromeos
|
|
|
|
|