Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_VALIDATOR_H_ | |
| 6 #define CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_VALIDATOR_H_ | |
| 7 | |
| 8 namespace base { | |
| 9 class DictionaryValue; | |
| 10 } // namespace base | |
| 11 | |
| 12 namespace chromeos { | |
| 13 namespace onc { | |
| 14 | |
| 15 class ONCValidator { | |
|
Mattias Nissler (ping if slow)
2012/09/18 16:29:08
same comment about making this a namespace if it d
pneubeck (no reviews)
2012/10/02 15:03:02
Done.
| |
| 16 public: | |
| 17 static void RemoveIgnoredFieldsFromIPsec(base::DictionaryValue* ipsec); | |
| 18 static void RemoveIgnoredFieldsFromVPN(base::DictionaryValue* vpn); | |
| 19 static void RemoveIgnoredFieldsFromNetwork(base::DictionaryValue* network); | |
|
Mattias Nissler (ping if slow)
2012/09/18 16:29:08
The names don't exactly suggest this is validation
pneubeck (no reviews)
2012/10/02 15:03:02
Done.
| |
| 20 }; | |
| 21 | |
| 22 } // namespace onc | |
| 23 } // namespace chromeos | |
| 24 | |
| 25 #endif // CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_VALIDATOR_H_ | |
| OLD | NEW |