diff options
author | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-02-14 19:51:05 +0000 |
---|---|---|
committer | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-02-14 19:51:05 +0000 |
commit | e5dc60822e5938fea2ae892ccddb906641ba174e (patch) | |
tree | d7d4a8e94fee7bdb4eee6501221d92595ebd5f02 /src/tools/windows/symupload | |
parent | Change the symbol table parsing so that it will only use symbols that are fro... (diff) | |
download | breakpad-e5dc60822e5938fea2ae892ccddb906641ba174e.tar.xz |
Rename Airbag to Breakpad.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@122 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/tools/windows/symupload')
-rw-r--r-- | src/tools/windows/symupload/symupload.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/windows/symupload/symupload.cc b/src/tools/windows/symupload/symupload.cc index 26d30b84..e6a51314 100644 --- a/src/tools/windows/symupload/symupload.cc +++ b/src/tools/windows/symupload/symupload.cc @@ -40,7 +40,7 @@ // os: the operating system that the module was built for, always // "windows" in this implementation. // cpu: the CPU that the module was built for, typically "x86". -// symbol_file: the contents of the airbag-format symbol file +// symbol_file: the contents of the breakpad-format symbol file #include <Windows.h> #include <DbgHelp.h> @@ -60,10 +60,10 @@ using std::string; using std::wstring; using std::vector; using std::map; -using google_airbag::HTTPUpload; -using google_airbag::PDBModuleInfo; -using google_airbag::PDBSourceLineWriter; -using google_airbag::WindowsStringUtils; +using google_breakpad::HTTPUpload; +using google_breakpad::PDBModuleInfo; +using google_breakpad::PDBSourceLineWriter; +using google_breakpad::WindowsStringUtils; // Extracts the file version information for the given filename, // as a string, for example, "1.2.3.4". Returns true on success. @@ -108,7 +108,7 @@ static bool GetFileVersionString(const wchar_t *filename, wstring *version) { static bool DumpSymbolsToTempFile(const wchar_t *file, wstring *temp_file_path, PDBModuleInfo *pdb_info) { - google_airbag::PDBSourceLineWriter writer; + google_breakpad::PDBSourceLineWriter writer; // Use EXE_FILE to get information out of the exe/dll in addition to the // pdb. The name and version number of the exe/dll are of value, and // there's no way to locate an exe/dll given a pdb. |