| Index: chrome/common/conflicts/module_watcher_win_unittest.cc
 | 
| diff --git a/chrome/common/conflicts/module_watcher_win_unittest.cc b/chrome/common/conflicts/module_watcher_win_unittest.cc
 | 
| index dd6988746db4da685be5a165063f2456486956ad..02bea081bc52566ce5d3c13bc03673e3b2e5e5fc 100644
 | 
| --- a/chrome/common/conflicts/module_watcher_win_unittest.cc
 | 
| +++ b/chrome/common/conflicts/module_watcher_win_unittest.cc
 | 
| @@ -10,7 +10,7 @@
 | 
|  #include "testing/gtest/include/gtest/gtest.h"
 | 
|  
 | 
|  class ModuleWatcherTest : public testing::Test {
 | 
| - protected:
 | 
| + public:
 | 
|    ModuleWatcherTest()
 | 
|        : module_(nullptr),
 | 
|          module_event_count_(0),
 | 
| @@ -18,7 +18,7 @@
 | 
|          module_loaded_event_count_(0),
 | 
|          module_unloaded_event_count_(0) {}
 | 
|  
 | 
| -  void OnModuleEvent(const ModuleWatcher::ModuleEvent& event) {
 | 
| +  void OnModuleEvent(const mojom::ModuleEvent& event) {
 | 
|      ++module_event_count_;
 | 
|      switch (event.event_type) {
 | 
|        case mojom::ModuleEventType::MODULE_ALREADY_LOADED:
 | 
| @@ -63,6 +63,7 @@
 | 
|  
 | 
|    // Holds a handle to a loaded module.
 | 
|    HMODULE module_;
 | 
| +
 | 
|    // Total number of module events seen.
 | 
|    int module_event_count_;
 | 
|    // Total number of MODULE_ALREADY_LOADED events seen.
 | 
| 
 |