Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 }; | |
| OLD | NEW |