| OLD | NEW | 
|    1 // Copyright 2014 The Chromium Authors. All rights reserved. |    1 // Copyright 2014 The Chromium Authors. All rights reserved. | 
|    2 // Use of this source code is governed by a BSD-style license that can be |    2 // Use of this source code is governed by a BSD-style license that can be | 
|    3 // found in the LICENSE file. |    3 // found in the LICENSE file. | 
|    4  |    4  | 
|    5 #include <limits.h> |    5 #include <limits.h> | 
|    6 #include <stdlib.h> |    6 #include <stdlib.h> | 
|    7 #include <iostream> |    7 #include <iostream> | 
|    8 #include <string> |    8 #include <string> | 
|    9 #include <vector> |    9 #include <vector> | 
|   10  |   10  | 
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  171     } |  171     } | 
|  172   } else { |  172   } else { | 
|  173     if (!ipc_fuzzer::MessageFile::Write( |  173     if (!ipc_fuzzer::MessageFile::Write( | 
|  174             base::FilePath(output_file_name), output_message_vector)) { |  174             base::FilePath(output_file_name), output_message_vector)) { | 
|  175       return EXIT_FAILURE; |  175       return EXIT_FAILURE; | 
|  176     } |  176     } | 
|  177   } |  177   } | 
|  178  |  178  | 
|  179   return EXIT_SUCCESS; |  179   return EXIT_SUCCESS; | 
|  180 } |  180 } | 
| OLD | NEW |