Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 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_POLICY_PREG_PARSER_WIN_H | |
| 6 #define CHROME_BROWSER_POLICY_PREG_PARSER_WIN_H | |
|
Joao da Silva
2013/04/05 12:51:33
nit: the header guard macros usually end in _H_
Mattias Nissler (ping if slow)
2013/04/05 18:12:50
Done.
| |
| 7 | |
| 8 #include <vector> | |
| 9 | |
| 10 #include "base/memory/scoped_ptr.h" | |
| 11 #include "base/values.h" | |
| 12 #include "chrome/browser/policy/policy_types.h" | |
|
Joao da Silva
2013/04/05 12:51:33
Not needed in the header
Mattias Nissler (ping if slow)
2013/04/05 18:12:50
Done.
| |
| 13 | |
| 14 namespace base { | |
| 15 class FilePath; | |
| 16 } | |
| 17 | |
| 18 namespace policy { | |
| 19 namespace preg_parser { | |
| 20 | |
| 21 // Reads the PReg file at |file_path| and sets policy data in |dict|. | |
| 22 bool ReadFile(const base::FilePath& file_path, | |
| 23 base::DictionaryValue* dict); | |
|
Joao da Silva
2013/04/05 12:51:33
Forward decl?
Mattias Nissler (ping if slow)
2013/04/05 18:12:50
Done.
| |
| 24 | |
| 25 } // namespace preg_parser | |
| 26 } // namespace policy | |
| 27 | |
| 28 #endif // CHROME_BROWSER_POLICY_PREG_PARSER_WIN_H | |
| OLD | NEW |