Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: chrome/browser/chromeos/network_settings/onc_validator.h

Issue 10944009: Implementation of ONC signature, validator and normalizer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@gperffix
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698