aboutsummaryrefslogtreecommitdiff
path: root/src/client/linux/sender/google_crash_report_sender.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/linux/sender/google_crash_report_sender.cc')
-rw-r--r--src/client/linux/sender/google_crash_report_sender.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/linux/sender/google_crash_report_sender.cc b/src/client/linux/sender/google_crash_report_sender.cc
index be897adb..0d48cbe6 100644
--- a/src/client/linux/sender/google_crash_report_sender.cc
+++ b/src/client/linux/sender/google_crash_report_sender.cc
@@ -32,7 +32,7 @@
#include <string>
#include <iostream>
-using std::string;
+#include "common/using_std_string.h"
DEFINE_string(crash_server, "https://clients2.google.com/cr",
"The crash server to upload minidumps to.");
@@ -59,7 +59,7 @@ DEFINE_string(proxy_userpasswd, "",
bool CheckForRequiredFlagsOrDie() {
- std::string error_text = "";
+ string error_text = "";
if (FLAGS_product_name.empty()) {
error_text.append("\nProduct name must be specified.");
}