| 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 // Precompiled header for Chromium project on Windows, not used by | 5 // Precompiled header for Chromium project on Windows, not used by |
| 6 // other build configurations. Using precompiled headers speeds the | 6 // other build configurations. Using precompiled headers speeds the |
| 7 // build up significantly, around 1/4th on VS 2010 on an HP Z600 with 12 | 7 // build up significantly, around 1/4th on VS 2010 on an HP Z600 with 12 |
| 8 // GB of memory. | 8 // GB of memory. |
| 9 // | 9 // |
| 10 // Numeric comments beside includes are the number of times they were | 10 // Numeric comments beside includes are the number of times they were |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 #include <map> | 99 #include <map> |
| 100 #include <numeric> // 2 | 100 #include <numeric> // 2 |
| 101 #include <ostream> | 101 #include <ostream> |
| 102 #include <queue> | 102 #include <queue> |
| 103 #include <set> | 103 #include <set> |
| 104 #include <sstream> | 104 #include <sstream> |
| 105 #include <stack> | 105 #include <stack> |
| 106 #include <string> | 106 #include <string> |
| 107 #include <utility> | 107 #include <utility> |
| 108 #include <vector> | 108 #include <vector> |
| 109 | |
| 110 #include "intsafe_workaround.h" | |
| OLD | NEW |