Rename Airbag to Breakpad.

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@122 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
mmentovai
2007-02-14 19:51:05 +00:00
parent 83befb1cb4
commit e5dc60822e
118 changed files with 37042 additions and 24117 deletions

View File

@@ -28,7 +28,7 @@
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// ms_symbol_server_converter.cc: Obtain symbol files from a Microsoft
// symbol server, and convert them to Airbag's dumped format.
// symbol server, and convert them to Breakpad's dumped format.
//
// See ms_symbol_server_converter.h for documentation.
//
@@ -52,7 +52,7 @@
#define SYMOPT_NO_PROMPTS 0x00080000
#endif // SYMOPT_NO_PROMPTS
namespace google_airbag {
namespace google_breakpad {
// Use sscanf_s if it is available, to quench the warning about scanf being
// deprecated. Use scanf where sscanf_is not available. Note that the
@@ -513,4 +513,4 @@ MSSymbolServerConverter::LocateAndConvertSymbolFile(
return LOCATE_SUCCESS;
}
} // namespace google_airbag
} // namespace google_breakpad

View File

@@ -28,7 +28,7 @@
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// ms_symbol_server_converter.h: Obtain symbol files from a Microsoft
// symbol server, and convert them to Airbag's dumped format.
// symbol server, and convert them to Breakpad's dumped format.
//
// At runtime, MSSymbolServerConverter and code that it calls depend on being
// able to locate suitable versions of dbghelp.dll and symsrv.dll. For best
@@ -71,7 +71,7 @@
#include <string>
#include <vector>
namespace google_airbag {
namespace google_breakpad {
using std::string;
using std::vector;
@@ -196,6 +196,6 @@ class MSSymbolServerConverter {
// fail_* member set, then it is authoritative.
};
} // namespace google_airbag
} // namespace google_breakpad
#endif // MS_SYMBOL_SERVER_CONVERTER_H__