Chromium Code Reviews| Index: chrome/test/ppapi/ppapi_test.cc | 
| diff --git a/chrome/test/ppapi/ppapi_test.cc b/chrome/test/ppapi/ppapi_test.cc | 
| index a33e45cb5208a62d806d7c16ac003b721b38f43d..46d282c22792d0745e128f4d4eb2e9f2a4419559 100644 | 
| --- a/chrome/test/ppapi/ppapi_test.cc | 
| +++ b/chrome/test/ppapi/ppapi_test.cc | 
| @@ -49,14 +49,14 @@ PPAPITestMessageHandler::PPAPITestMessageHandler() { | 
| TestMessageHandler::MessageResponse PPAPITestMessageHandler::HandleMessage( | 
| const std::string& json) { | 
| - std::string trimmed; | 
| - TrimString(json, "\"", &trimmed); | 
| - if (trimmed == "...") { | 
| - return CONTINUE; | 
| - } else { | 
| - message_ = trimmed; | 
| - return DONE; | 
| - } | 
| + std::string trimmed; | 
| + base::TrimString(json, "\"", &trimmed); | 
| + if (trimmed == "...") { | 
| + return CONTINUE; | 
| + } else { | 
| 
 
viettrungluu
2013/12/03 21:13:44
If you're going to do a drive-by reindentation, yo
 
 | 
| + message_ = trimmed; | 
| + return DONE; | 
| + } | 
| } | 
| void PPAPITestMessageHandler::Reset() { |