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

Side by Side Diff: chrome/browser/win/enumerate_modules_model.cc

Issue 2098713003: Moved a bunch of win-specific files to the new win folder in chrome/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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
OLDNEW
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/win/enumerate_modules_model.h"
6 6
7 #include <Tlhelp32.h> 7 #include <Tlhelp32.h>
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 #include <wintrust.h> 10 #include <wintrust.h>
11 11
12 #include <algorithm> 12 #include <algorithm>
13 #include <memory> 13 #include <memory>
14 14
15 #include "base/bind.h" 15 #include "base/bind.h"
(...skipping 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after
1073 GenerateHash(base::WideToUTF8(module.location), &location); 1073 GenerateHash(base::WideToUTF8(module.location), &location);
1074 GenerateHash(base::WideToUTF8(module.description), &description); 1074 GenerateHash(base::WideToUTF8(module.description), &description);
1075 GenerateHash(base::WideToUTF8(module.digital_signer), &signer); 1075 GenerateHash(base::WideToUTF8(module.digital_signer), &signer);
1076 1076
1077 base::string16 url = 1077 base::string16 url =
1078 l10n_util::GetStringFUTF16(IDS_HELP_CENTER_VIEW_CONFLICTS, 1078 l10n_util::GetStringFUTF16(IDS_HELP_CENTER_VIEW_CONFLICTS,
1079 base::ASCIIToUTF16(filename), base::ASCIIToUTF16(location), 1079 base::ASCIIToUTF16(filename), base::ASCIIToUTF16(location),
1080 base::ASCIIToUTF16(description), base::ASCIIToUTF16(signer)); 1080 base::ASCIIToUTF16(description), base::ASCIIToUTF16(signer));
1081 return GURL(base::UTF16ToUTF8(url)); 1081 return GURL(base::UTF16ToUTF8(url));
1082 } 1082 }
OLDNEW
« no previous file with comments | « chrome/browser/win/enumerate_modules_model.h ('k') | chrome/browser/win/enumerate_modules_model_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698