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

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

Issue 23513049: Implement install module verification metric. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 #include "chrome/browser/expected_install_modules_win.h"
6
7 std::string CalculateInstalledModuleDigest(const std::string& module_name) {
8 return module_name;
9 }
robertshield 2013/09/13 17:26:05 minor nit, move kExpectedInstallModuleDigests up
erikwright (departed) 2013/09/13 20:19:56 Done.
10
11 // Do not reorder these elements. Their index is used as an ID in metrics
12 // reporting.
13 extern const char* kExpectedInstallModuleDigests[] = {
14 "chrome.dll",
15 "icudt.dll",
16 "chrome_frame_helper.dll",
17 "d3dcompiler_46.dll",
18 "libglesv2.dll",
19 "metro_driver.dll",
20 "pdf.dll",
21 "widevinecdmadapter.dll",
22 "chrome_child.dll",
23 "d3dcompiler_43.dll",
24 "ffmpegsumo.dll",
25 "libegl.dll",
26 "libpeerconnection.dll",
27 "npchrome_frame.dll",
28 "ppgooglenaclpluginchrome.dll",
29 "xinput1_3.dll",
30 0
31 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698