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_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_ | |
| OLD | NEW |