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

Unified Diff: chrome/common/conflicts/module_database_win.mojom

Issue 2576843002: [win] Create ModuleDatabase and ModuleEventSinkImpl. (Closed)
Patch Set: Created 4 years 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
Index: chrome/common/conflicts/module_database_win.mojom
diff --git a/chrome/common/conflicts/module_database_win.mojom b/chrome/common/conflicts/module_database_win.mojom
index 2bce402c277630c8a0f0b0634adfe694657df3dd..761fa6635cdac7dee6ef79a4f251a26146dd0f6e 100644
--- a/chrome/common/conflicts/module_database_win.mojom
+++ b/chrome/common/conflicts/module_database_win.mojom
@@ -9,6 +9,10 @@ import "chrome/common/conflicts/module_event_win.mojom";
// Interface for a remote module database.
interface ModuleDatabase {
+ // Notifies the module database of a remote process that has just started,
+ // including its |process_id| and |process_type|. The |process_type| is from
+ // the enumeration in "content/public/common/process_type.h".
+ OnProcessStarted(uint32 process_id, uint32 process_type);
grt (UTC plus 2) 2016/12/15 09:07:12 does |process_id| come across the wire from the ch
chrisha 2016/12/19 20:15:37 Yup, this was silly. Reworked this so that it's ta
// Notifies the module database of a module event in a remote process.
- OnModuleEvent(uint32 process_id, ModuleEvent module_event);
+ OnModuleEvent(ModuleEvent module_event);
chrisha 2016/12/19 20:15:37 After talking to security folks (wfh@), also rewor
};

Powered by Google App Engine
This is Rietveld 408576698