Windows: Revert early chrome_elf crashpad initialization (issue #2122)

This commit is contained in:
Marshall Greenblatt
2017-04-27 12:33:24 -04:00
parent 30bc708a04
commit b7ab3f2be2
5 changed files with 24 additions and 30 deletions

View File

@ -557,10 +557,10 @@ index 94a350f..61667a8 100644
(*annotations)["special"] = base::UTF16ToUTF8(special_build);
#if defined(ARCH_CPU_X86)
- (*annotations)["plat"] = std::string("Win32");
+ (*annotations)["platform"] = std::string("Win32");
+ (*annotations)["platform"] = std::string("win32");
#elif defined(ARCH_CPU_X86_64)
- (*annotations)["plat"] = std::string("Win64");
+ (*annotations)["platform"] = std::string("Win64");
+ (*annotations)["platform"] = std::string("win64");
#endif
}