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

Side by Side Diff: chromeos/network/onc/onc_merger.cc

Issue 1540803002: Switch to standard integer types in chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years 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
« no previous file with comments | « chromeos/network/onc/onc_mapper.h ('k') | chromeos/network/onc/onc_normalizer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chromeos/network/onc/onc_mapper.h ('k') | chromeos/network/onc/onc_normalizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698