OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_INSTALL_MODULE_VERIFIER_WIN_H_ | 5 #ifndef CHROME_BROWSER_INSTALL_MODULE_VERIFIER_WIN_H_ |
6 #define CHROME_BROWSER_INSTALL_MODULE_VERIFIER_WIN_H_ | 6 #define CHROME_BROWSER_INSTALL_MODULE_VERIFIER_WIN_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 28 matching lines...) Expand all Loading... |
39 // separated by a space. Lines are terminated by \r and/or \n. The result is a | 39 // separated by a space. Lines are terminated by \r and/or \n. The result is a |
40 // vector of pairs where the first value is an ID and the second value is the | 40 // vector of pairs where the first value is an ID and the second value is the |
41 // corresponding module name digest. The StringPieces use the same underlying | 41 // corresponding module name digest. The StringPieces use the same underlying |
42 // storage as |raw_data|. | 42 // storage as |raw_data|. |
43 // | 43 // |
44 // Invalid lines are ignored. | 44 // Invalid lines are ignored. |
45 void ParseAdditionalModules(const base::StringPiece& raw_data, | 45 void ParseAdditionalModules(const base::StringPiece& raw_data, |
46 AdditionalModules* additional_modules); | 46 AdditionalModules* additional_modules); |
47 | 47 |
48 #endif // CHROME_BROWSER_INSTALL_MODULE_VERIFIER_WIN_H_ | 48 #endif // CHROME_BROWSER_INSTALL_MODULE_VERIFIER_WIN_H_ |
OLD | NEW |