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

Unified Diff: chrome/browser/enumerate_modules_model_win.h

Issue 5092007: Add registered shell extensions to enumerated module list on about:conflicts.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/enumerate_modules_model_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/enumerate_modules_model_win.h
===================================================================
--- chrome/browser/enumerate_modules_model_win.h (revision 66751)
+++ chrome/browser/enumerate_modules_model_win.h (working copy)
@@ -30,6 +30,7 @@
// time of scan.
enum ModuleType {
LOADED_MODULE,
+ SHELL_EXTENSION,
WINSOCK_MODULE_REGISTRATION,
};
@@ -133,6 +134,23 @@
// ReportBack to let the observer know we are done.
void ScanOnFileThread();
+ // Enumerate all modules loaded into the Chrome process.
+ void EnumerateLoadedModules();
+
+ // Enumerate all registered Windows shell extensions.
+ void EnumerateShellExtensions();
+
+ // Enumerate all registered Winsock LSP modules.
+ void EnumerateWinsockModule();
+
+ // Reads the registered shell extensions found under |parent| key in the
+ // registry.
+ void ReadShellExtensions(HKEY parent);
+
+ // Given a |module|, initializes the structure and loads additional
+ // information using the location field of the module.
+ void PopulateModuleInformation(Module* module);
+
// Builds up a vector of path values mapping to environment variable,
// with pairs like [c:\windows\, %systemroot%]. This is later used to
// collapse paths like c:\windows\system32 into %systemroot%\system32, which
« no previous file with comments | « no previous file | chrome/browser/enumerate_modules_model_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698