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

Side by Side Diff: chrome/browser/install_module_verifier_win.cc

Issue 36183002: Merge 227542 "Implement install module verification metric." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1650/src/
Patch Set: Created 7 years, 2 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
« no previous file with comments | « chrome/browser/install_module_verifier_win.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/install_module_verifier_win.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698