OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #include "chromeos/network/onc/onc_merger.h" | 5 #include "chromeos/network/onc/onc_merger.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | |
12 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/macros.h" |
13 #include "base/values.h" | 13 #include "base/values.h" |
14 #include "chromeos/network/onc/onc_signature.h" | 14 #include "chromeos/network/onc/onc_signature.h" |
15 #include "components/onc/onc_constants.h" | 15 #include "components/onc/onc_constants.h" |
16 | 16 |
17 namespace chromeos { | 17 namespace chromeos { |
18 namespace onc { | 18 namespace onc { |
19 namespace { | 19 namespace { |
20 | 20 |
21 typedef scoped_ptr<base::DictionaryValue> DictionaryPtr; | 21 typedef scoped_ptr<base::DictionaryValue> DictionaryPtr; |
22 | 22 |
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 const base::DictionaryValue* shared_settings, | 503 const base::DictionaryValue* shared_settings, |
504 const base::DictionaryValue* active_settings) { | 504 const base::DictionaryValue* active_settings) { |
505 MergeToAugmented merger; | 505 MergeToAugmented merger; |
506 return merger.MergeDictionaries( | 506 return merger.MergeDictionaries( |
507 signature, user_policy, device_policy, user_settings, shared_settings, | 507 signature, user_policy, device_policy, user_settings, shared_settings, |
508 active_settings); | 508 active_settings); |
509 } | 509 } |
510 | 510 |
511 } // namespace onc | 511 } // namespace onc |
512 } // namespace chromeos | 512 } // namespace chromeos |
OLD | NEW |