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

Side by Side Diff: chrome/browser/policy/preg_parser_win.h

Issue 13441008: Add parser for PReg files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months 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 | Annotate | Revision Log
OLDNEW
(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
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/policy/preg_parser_win.cc » ('j') | chrome/browser/policy/preg_parser_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698