| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <errno.h> | 5 #include <errno.h> |
| 6 #include <fcntl.h> | 6 #include <fcntl.h> |
| 7 #include <limits.h> |
| 7 #include <sandbox.h> | 8 #include <sandbox.h> |
| 8 #include <stddef.h> | 9 #include <stddef.h> |
| 9 #include <stdint.h> | 10 #include <stdint.h> |
| 10 #include <stdio.h> | 11 #include <stdio.h> |
| 11 #include <stdlib.h> | 12 #include <stdlib.h> |
| 12 #include <string.h> | 13 #include <string.h> |
| 13 #include <sys/stat.h> | 14 #include <sys/stat.h> |
| 14 | 15 |
| 15 #include <string> | 16 #include <string> |
| 16 | 17 |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 | 248 |
| 248 return true; | 249 return true; |
| 249 } | 250 } |
| 250 | 251 |
| 251 } // namespace | 252 } // namespace |
| 252 | 253 |
| 253 int main(int argc, const char* argv[]) { | 254 int main(int argc, const char* argv[]) { |
| 254 SafeDMG safe_dmg; | 255 SafeDMG safe_dmg; |
| 255 return safe_dmg.Main(argc, argv); | 256 return safe_dmg.Main(argc, argv); |
| 256 } | 257 } |
| OLD | NEW |