aboutsummaryrefslogtreecommitdiff
path: root/src/tools/windows/converter
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/windows/converter')
-rw-r--r--src/tools/windows/converter/ms_symbol_server_converter.cc6
-rw-r--r--src/tools/windows/converter/ms_symbol_server_converter.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/windows/converter/ms_symbol_server_converter.cc b/src/tools/windows/converter/ms_symbol_server_converter.cc
index 76a55548..725eeeb9 100644
--- a/src/tools/windows/converter/ms_symbol_server_converter.cc
+++ b/src/tools/windows/converter/ms_symbol_server_converter.cc
@@ -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
diff --git a/src/tools/windows/converter/ms_symbol_server_converter.h b/src/tools/windows/converter/ms_symbol_server_converter.h
index b675b31b..fffb7b8b 100644
--- a/src/tools/windows/converter/ms_symbol_server_converter.h
+++ b/src/tools/windows/converter/ms_symbol_server_converter.h
@@ -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__