OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/enumerate_modules_model_win.h" | 5 #include "chrome/browser/enumerate_modules_model_win.h" |
6 | 6 |
7 #include <Tlhelp32.h> | 7 #include <Tlhelp32.h> |
8 #include <wintrust.h> | 8 #include <wintrust.h> |
9 #include <algorithm> | 9 #include <algorithm> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
13 #include "base/environment.h" | 13 #include "base/environment.h" |
14 #include "base/file_version_info_win.h" | 14 #include "base/file_version_info_win.h" |
15 #include "base/files/file_path.h" | 15 #include "base/files/file_path.h" |
16 #include "base/i18n/case_conversion.h" | 16 #include "base/i18n/case_conversion.h" |
17 #include "base/metrics/histogram.h" | 17 #include "base/metrics/histogram.h" |
18 #include "base/strings/string_number_conversions.h" | 18 #include "base/strings/string_number_conversions.h" |
19 #include "base/strings/string_util.h" | 19 #include "base/strings/string_util.h" |
20 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
21 #include "base/time/time.h" | 21 #include "base/time/time.h" |
22 #include "base/values.h" | 22 #include "base/values.h" |
23 #include "base/version.h" | 23 #include "base/version.h" |
24 #include "base/win/registry.h" | 24 #include "base/win/registry.h" |
25 #include "base/win/scoped_handle.h" | 25 #include "base/win/scoped_handle.h" |
26 #include "base/win/windows_version.h" | 26 #include "base/win/windows_version.h" |
27 #include "chrome/browser/chrome_notification_types.h" | 27 #include "chrome/browser/chrome_notification_types.h" |
28 #include "chrome/browser/net/service_providers_win.h" | 28 #include "chrome/browser/net/service_providers_win.h" |
29 #include "chrome/common/chrome_constants.h" | 29 #include "chrome/common/chrome_constants.h" |
30 #include "chrome/common/chrome_switches.h" | |
31 #include "content/public/browser/notification_service.h" | 30 #include "content/public/browser/notification_service.h" |
32 #include "crypto/sha2.h" | 31 #include "crypto/sha2.h" |
33 #include "grit/generated_resources.h" | 32 #include "grit/generated_resources.h" |
34 #include "grit/google_chrome_strings.h" | 33 #include "grit/google_chrome_strings.h" |
35 #include "ui/base/l10n/l10n_util.h" | 34 #include "ui/base/l10n/l10n_util.h" |
36 | 35 |
37 using content::BrowserThread; | 36 using content::BrowserThread; |
38 | 37 |
39 // The period of time (in milliseconds) to wait until checking to see if any | 38 // The period of time (in milliseconds) to wait until checking to see if any |
40 // incompatible modules exist. | 39 // incompatible modules exist. |
(...skipping 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1043 GenerateHash(base::WideToUTF8(module.location), &location); | 1042 GenerateHash(base::WideToUTF8(module.location), &location); |
1044 GenerateHash(base::WideToUTF8(module.description), &description); | 1043 GenerateHash(base::WideToUTF8(module.description), &description); |
1045 GenerateHash(base::WideToUTF8(module.digital_signer), &signer); | 1044 GenerateHash(base::WideToUTF8(module.digital_signer), &signer); |
1046 | 1045 |
1047 base::string16 url = | 1046 base::string16 url = |
1048 l10n_util::GetStringFUTF16(IDS_HELP_CENTER_VIEW_CONFLICTS, | 1047 l10n_util::GetStringFUTF16(IDS_HELP_CENTER_VIEW_CONFLICTS, |
1049 base::ASCIIToUTF16(filename), base::ASCIIToUTF16(location), | 1048 base::ASCIIToUTF16(filename), base::ASCIIToUTF16(location), |
1050 base::ASCIIToUTF16(description), base::ASCIIToUTF16(signer)); | 1049 base::ASCIIToUTF16(description), base::ASCIIToUTF16(signer)); |
1051 return GURL(base::UTF16ToUTF8(url)); | 1050 return GURL(base::UTF16ToUTF8(url)); |
1052 } | 1051 } |
OLD | NEW |