| Index: chrome/browser/install_verification/win/module_info.h
|
| diff --git a/chrome/browser/install_verification/win/module_info.h b/chrome/browser/install_verification/win/module_info.h
|
| index f2b4a2a3d1f360e6de4533eb2e033161370ac13e..2da0b1a9b3eec70c49f9353a4fd29cce6024f785 100644
|
| --- a/chrome/browser/install_verification/win/module_info.h
|
| +++ b/chrome/browser/install_verification/win/module_info.h
|
| @@ -16,10 +16,9 @@ struct ModuleInfo {
|
| ModuleInfo(const base::char16* const module_name,
|
| uintptr_t module_base_address,
|
| uint32_t module_size)
|
| - : base_address(module_base_address),
|
| - size(module_size),
|
| - name(module_name) {
|
| - }
|
| + : name(module_name),
|
| + base_address(module_base_address),
|
| + size(module_size) {}
|
|
|
| // Sorts modules by their base address.
|
| bool operator< (const ModuleInfo& compare) const {
|
|
|