| Index: content/browser/tracing/tracing_controller_browsertest.cc
|
| diff --git a/content/browser/tracing/tracing_controller_browsertest.cc b/content/browser/tracing/tracing_controller_browsertest.cc
|
| index 47d60b595b1fd241d6f833df3370debdb6e2b3b7..b4a2f0d75b49aede8707e340d9026cf44c771d6b 100644
|
| --- a/content/browser/tracing/tracing_controller_browsertest.cc
|
| +++ b/content/browser/tracing/tracing_controller_browsertest.cc
|
| @@ -65,9 +65,9 @@ class TracingControllerTestEndpoint : public TraceDataEndpoint {
|
| base::RefCountedString*)> done_callback)
|
| : done_callback_(done_callback) {}
|
|
|
| - void ReceiveTraceChunk(const std::string& chunk) override {
|
| - EXPECT_FALSE(chunk.empty());
|
| - trace_ += chunk;
|
| + void ReceiveTraceChunk(std::unique_ptr<std::string> chunk) override {
|
| + EXPECT_FALSE(chunk->empty());
|
| + trace_ += *chunk;
|
| }
|
|
|
| void ReceiveTraceFinalContents(
|
|
|