OLD | NEW |
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 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_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_STRING
S_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_STRING
S_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_STRING
S_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_STRING
S_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 namespace base { | 10 namespace base { |
11 class DictionaryValue; | 11 class DictionaryValue; |
12 } | 12 } |
13 | 13 |
14 namespace chromeos { | 14 namespace chromeos { |
15 namespace internet_options_strings { | 15 namespace internet_options_strings { |
16 | 16 |
17 void RegisterLocalizedStrings(base::DictionaryValue* localized_strings); | 17 void RegisterLocalizedStrings(base::DictionaryValue* localized_strings); |
18 std::string ActivationStateString(const std::string& activation_state); | |
19 std::string RoamingStateString(const std::string& roaming_state); | |
20 std::string ProviderTypeString( | |
21 const std::string& provider_type, | |
22 const base::DictionaryValue& provider_properties); | |
23 std::string RestrictedStateString(const std::string& connection_state); | |
24 std::string NetworkDeviceTypeString(const std::string& network_type); | |
25 | 18 |
26 } // namespace internet_options_strings | 19 } // namespace internet_options_strings |
27 } // namespace chromeos | 20 } // namespace chromeos |
28 | 21 |
29 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_STR
INGS_H_ | 22 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_STR
INGS_H_ |
OLD | NEW |