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

Side by Side Diff: chrome/browser/chromeos/network_settings/onc_merger.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_MERGER_H_
6 #define CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_MERGER_H_
7
8 #include <string>
Mattias Nissler (ping if slow) 2012/09/18 16:29:08 newline
pneubeck (no reviews) 2012/10/02 15:03:02 Done.
9 #include "base/callback.h"
10
11 namespace base {
12 class DictionaryValue;
13 } // namespace base
Mattias Nissler (ping if slow) 2012/09/18 16:29:08 namespace comment not necessary here per conventio
pneubeck (no reviews) 2012/10/02 15:03:02 Done.
14
15 namespace chromeos {
16 namespace onc {
17
18 class ONCMerger {
Mattias Nissler (ping if slow) 2012/09/18 16:29:08 if you don't intend on adding state, this should b
pneubeck (no reviews) 2012/10/02 15:03:02 Done.
19 public:
20 static base::DictionaryValue* MergeUserSettingsWithPolicy(
Mattias Nissler (ping if slow) 2012/09/18 16:29:08 could use a description comment
pneubeck (no reviews) 2012/10/02 15:03:02 Done.
21 const base::DictionaryValue& user,
22 const base::DictionaryValue& policy);
23 };
24
25 } // namespace onc
26 } // namespace chromeos
27
28 #endif // CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_MERGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698