| Index: content/browser/tracing/trace_uploader.cc
|
| diff --git a/content/browser/tracing/trace_uploader.cc b/content/browser/tracing/trace_uploader.cc
|
| index 3bcc1872817a9f040c2387a380871d797d67d872..4a2a5998b9cc2a682b194d12054bbfc5367d7e98 100644
|
| --- a/content/browser/tracing/trace_uploader.cc
|
| +++ b/content/browser/tracing/trace_uploader.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/browser/tracing/trace_uploader.h"
|
|
|
| +#include <string>
|
| +
|
| #include "base/files/file_path.h"
|
| #include "base/files/file_util.h"
|
| #include "base/memory/shared_memory.h"
|
| @@ -53,8 +55,8 @@ void TraceUploader::OnURLFetchComplete(const net::URLFetcher* source) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| DCHECK_EQ(source, url_fetcher_.get());
|
| int response_code = source->GetResponseCode();
|
| - string report_id;
|
| - string error_message;
|
| + std::string report_id;
|
| + std::string error_message;
|
| bool success = (response_code == kHttpResponseOk);
|
| if (success) {
|
| source->GetResponseAsString(&report_id);
|
|
|