| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This file is used as a precompiled header for both C and C++ files. So | 5 // This file is used as a precompiled header for both C and C++ files. So | 
| 6 // any C++ headers must go in the __cplusplus block below. | 6 // any C++ headers must go in the __cplusplus block below. | 
| 7 | 7 | 
| 8 #if defined(BUILD_PRECOMPILE_H_) | 8 #if defined(BUILD_PRECOMPILE_H_) | 
| 9 #error You shouldn't include the precompiled header file more than once. | 9 #error You shouldn't include the precompiled header file more than once. | 
| 10 #endif | 10 #endif | 
| 11 | 11 | 
| 12 #define BUILD_PRECOMPILE_H_ | 12 #define BUILD_PRECOMPILE_H_ | 
| 13 | 13 | 
|  | 14 #ifndef _USE_MATH_DEFINES | 
|  | 15 // Needed to get preprocessor macros like M_PI out of VS libraries. | 
| 14 #define _USE_MATH_DEFINES | 16 #define _USE_MATH_DEFINES | 
|  | 17 #endif | 
| 15 | 18 | 
| 16 #include <errno.h> | 19 #include <errno.h> | 
| 17 #include <fcntl.h> | 20 #include <fcntl.h> | 
| 18 #include <limits.h> | 21 #include <limits.h> | 
| 19 #include <math.h> | 22 #include <math.h> | 
| 20 #include <memory.h> | 23 #include <memory.h> | 
| 21 #include <signal.h> | 24 #include <signal.h> | 
| 22 #include <stdarg.h> | 25 #include <stdarg.h> | 
| 23 #include <stddef.h> | 26 #include <stddef.h> | 
| 24 #include <stdio.h> | 27 #include <stdio.h> | 
| (...skipping 23 matching lines...) Expand all  Loading... | 
| 48 #include <ostream> | 51 #include <ostream> | 
| 49 #include <queue> | 52 #include <queue> | 
| 50 #include <set> | 53 #include <set> | 
| 51 #include <sstream> | 54 #include <sstream> | 
| 52 #include <stack> | 55 #include <stack> | 
| 53 #include <string> | 56 #include <string> | 
| 54 #include <utility> | 57 #include <utility> | 
| 55 #include <vector> | 58 #include <vector> | 
| 56 | 59 | 
| 57 #endif  // __cplusplus | 60 #endif  // __cplusplus | 
| OLD | NEW | 
|---|