Chromium Code Reviews| Index: chrome/browser/autofill/autocomplete_history_manager_unittest.cc |
| =================================================================== |
| --- chrome/browser/autofill/autocomplete_history_manager_unittest.cc (revision 181040) |
| +++ chrome/browser/autofill/autocomplete_history_manager_unittest.cc (working copy) |
| @@ -179,7 +179,10 @@ |
| : AutocompleteHistoryManager(web_contents, profile, wds.Pass()) {} |
| // Intentionally swallow the message. |
| - virtual bool Send(IPC::Message* message) { delete message; return true; } |
| + virtual bool Send(IPC::Message* message) OVERRIDE { |
| + delete message; |
|
Nico
2013/02/06 22:22:58
Out of curiosity, did you rewrap manually or is th
Ryan Sleevi
2013/02/06 22:29:07
Both, depending.
In the original 751 file CL, the
|
| + return true; |
| + } |
| }; |
| } // namespace |