diff options
Diffstat (limited to 'src/common/windows')
-rw-r--r-- | src/common/windows/guid_string.cc | 4 | ||||
-rw-r--r-- | src/common/windows/guid_string.h | 4 | ||||
-rw-r--r-- | src/common/windows/http_upload.cc | 6 | ||||
-rw-r--r-- | src/common/windows/http_upload.h | 4 | ||||
-rw-r--r-- | src/common/windows/pdb_source_line_writer.cc | 4 | ||||
-rw-r--r-- | src/common/windows/pdb_source_line_writer.h | 4 | ||||
-rw-r--r-- | src/common/windows/string_utils-inl.h | 4 | ||||
-rw-r--r-- | src/common/windows/string_utils.cc | 4 |
8 files changed, 17 insertions, 17 deletions
diff --git a/src/common/windows/guid_string.cc b/src/common/windows/guid_string.cc index 0adc248a..e77432a3 100644 --- a/src/common/windows/guid_string.cc +++ b/src/common/windows/guid_string.cc @@ -37,7 +37,7 @@ #include "common/windows/guid_string.h" -namespace google_airbag { +namespace google_breakpad { // static wstring GUIDString::GUIDToWString(GUID *guid) { @@ -65,4 +65,4 @@ wstring GUIDString::GUIDToSymbolServerWString(GUID *guid) { return wstring(guid_string); } -} // namespace google_airbag +} // namespace google_breakpad diff --git a/src/common/windows/guid_string.h b/src/common/windows/guid_string.h index c62a341c..f8aa8a23 100644 --- a/src/common/windows/guid_string.h +++ b/src/common/windows/guid_string.h @@ -36,7 +36,7 @@ #include <string> -namespace google_airbag { +namespace google_breakpad { using std::wstring; @@ -53,6 +53,6 @@ class GUIDString { static wstring GUIDToSymbolServerWString(GUID *guid); }; -} // namespace google_airbag +} // namespace google_breakpad #endif // COMMON_WINDOWS_GUID_STRING_H__ diff --git a/src/common/windows/http_upload.cc b/src/common/windows/http_upload.cc index 2fa48491..5fe3b6dc 100644 --- a/src/common/windows/http_upload.cc +++ b/src/common/windows/http_upload.cc @@ -38,12 +38,12 @@ #include "common/windows/http_upload.h" -namespace google_airbag { +namespace google_breakpad { using std::ifstream; using std::ios; -static const wchar_t kUserAgent[] = L"Airbag/1.0 (Windows)"; +static const wchar_t kUserAgent[] = L"Breakpad/1.0 (Windows)"; // Helper class which closes an internet handle when it goes away class HTTPUpload::AutoInternetHandle { @@ -368,4 +368,4 @@ bool HTTPUpload::CheckParameters(const map<wstring, wstring> ¶meters) { return true; } -} // namespace google_airbag +} // namespace google_breakpad diff --git a/src/common/windows/http_upload.h b/src/common/windows/http_upload.h index d458eb19..a1ba7ae1 100644 --- a/src/common/windows/http_upload.h +++ b/src/common/windows/http_upload.h @@ -45,7 +45,7 @@ #include <string> #include <vector> -namespace google_airbag { +namespace google_breakpad { using std::string; using std::wstring; @@ -118,7 +118,7 @@ class HTTPUpload { ~HTTPUpload(); }; -} // namespace google_airbag +} // namespace google_breakpad #pragma warning( pop ) diff --git a/src/common/windows/pdb_source_line_writer.cc b/src/common/windows/pdb_source_line_writer.cc index 4266dca8..e8684634 100644 --- a/src/common/windows/pdb_source_line_writer.cc +++ b/src/common/windows/pdb_source_line_writer.cc @@ -43,7 +43,7 @@ #define UNDNAME_NO_ECSU 0x8000 // Suppresses enum/class/struct/union. #endif // UNDNAME_NO_ECSU -namespace google_airbag { +namespace google_breakpad { PDBSourceLineWriter::PDBSourceLineWriter() : output_(NULL) { } @@ -785,4 +785,4 @@ bool PDBSourceLineWriter::UsesGUID(bool *uses_guid) { return true; } -} // namespace google_airbag +} // namespace google_breakpad diff --git a/src/common/windows/pdb_source_line_writer.h b/src/common/windows/pdb_source_line_writer.h index 58c8f5e0..e91d0737 100644 --- a/src/common/windows/pdb_source_line_writer.h +++ b/src/common/windows/pdb_source_line_writer.h @@ -41,7 +41,7 @@ struct IDiaEnumLineNumbers; struct IDiaSession; struct IDiaSymbol; -namespace google_airbag { +namespace google_breakpad { using std::wstring; @@ -158,6 +158,6 @@ class PDBSourceLineWriter { void operator=(const PDBSourceLineWriter&); }; -} // namespace google_airbag +} // namespace google_breakpad #endif // _PDB_SOURCE_LINE_WRITER_H__ diff --git a/src/common/windows/string_utils-inl.h b/src/common/windows/string_utils-inl.h index b2c1d5e7..de6e2e25 100644 --- a/src/common/windows/string_utils-inl.h +++ b/src/common/windows/string_utils-inl.h @@ -49,7 +49,7 @@ #define WIN_STRING_FORMAT_LL "I64" #endif // MSC_VER >= 1400 -namespace google_airbag { +namespace google_breakpad { using std::string; using std::wstring; @@ -140,6 +140,6 @@ inline void WindowsStringUtils::safe_wcsncpy(wchar_t *destination, #endif // _MSC_VER >= 1400 } -} // namespace google_airbag +} // namespace google_breakpad #endif // COMMON_WINDOWS_STRING_UTILS_INL_H__ diff --git a/src/common/windows/string_utils.cc b/src/common/windows/string_utils.cc index 3d24caa9..5d464802 100644 --- a/src/common/windows/string_utils.cc +++ b/src/common/windows/string_utils.cc @@ -31,7 +31,7 @@ #include "common/windows/string_utils-inl.h" -namespace google_airbag { +namespace google_breakpad { // static wstring WindowsStringUtils::GetBaseName(const wstring &filename) { @@ -89,4 +89,4 @@ bool WindowsStringUtils::safe_mbstowcs(const string &mbs, wstring *wcs) { return true; } -} // namespace google_airbag +} // namespace google_breakpad |