| 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 #ifndef CHROMEOS_SYSTEM_NAME_VALUE_PAIRS_PARSER_H_ | 5 #ifndef CHROMEOS_SYSTEM_NAME_VALUE_PAIRS_PARSER_H_ |
| 6 #define CHROMEOS_SYSTEM_NAME_VALUE_PAIRS_PARSER_H_ | 6 #define CHROMEOS_SYSTEM_NAME_VALUE_PAIRS_PARSER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/macros.h" |
| 12 #include "chromeos/chromeos_export.h" | 12 #include "chromeos/chromeos_export.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class FilePath; | 15 class FilePath; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace chromeos { | 18 namespace chromeos { |
| 19 namespace system { | 19 namespace system { |
| 20 | 20 |
| 21 // The parser is used to get machine info as name-value pairs. Defined | 21 // The parser is used to get machine info as name-value pairs. Defined |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 private: | 74 private: |
| 75 NameValueMap* map_; | 75 NameValueMap* map_; |
| 76 | 76 |
| 77 DISALLOW_COPY_AND_ASSIGN(NameValuePairsParser); | 77 DISALLOW_COPY_AND_ASSIGN(NameValuePairsParser); |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 } // namespace system | 80 } // namespace system |
| 81 } // namespace chromeos | 81 } // namespace chromeos |
| 82 | 82 |
| 83 #endif // CHROMEOS_SYSTEM_NAME_VALUE_PAIRS_PARSER_H_ | 83 #endif // CHROMEOS_SYSTEM_NAME_VALUE_PAIRS_PARSER_H_ |
| OLD | NEW |