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 #include "chrome/browser/install_module_verifier_win.h" | 5 #include "chrome/browser/install_module_verifier_win.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 DCHECK(additional_modules); | 210 DCHECK(additional_modules); |
211 | 211 |
212 base::CStringTokenizer file_tokenizer(raw_data.begin(), | 212 base::CStringTokenizer file_tokenizer(raw_data.begin(), |
213 raw_data.end(), | 213 raw_data.end(), |
214 "\r\n"); | 214 "\r\n"); |
215 while (file_tokenizer.GetNext()) { | 215 while (file_tokenizer.GetNext()) { |
216 ParseAdditionalModuleLine(base::StringPiece(file_tokenizer.token_piece()), | 216 ParseAdditionalModuleLine(base::StringPiece(file_tokenizer.token_piece()), |
217 additional_modules); | 217 additional_modules); |
218 } | 218 } |
219 } | 219 } |
OLD | NEW |