| 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 #ifndef BASE_SYS_INFO_H_ | 5 #ifndef BASE_SYS_INFO_H_ |
| 6 #define BASE_SYS_INFO_H_ | 6 #define BASE_SYS_INFO_H_ |
| 7 #pragma once | |
| 8 | 7 |
| 9 #include "base/base_export.h" | 8 #include "base/base_export.h" |
| 10 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 11 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| 12 #include "base/time.h" | 11 #include "base/time.h" |
| 13 | 12 |
| 14 #include <string> | 13 #include <string> |
| 15 | 14 |
| 16 class FilePath; | 15 class FilePath; |
| 17 | 16 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 #endif // defined(OS_CHROMEOS) | 81 #endif // defined(OS_CHROMEOS) |
| 83 | 82 |
| 84 #if defined(OS_ANDROID) | 83 #if defined(OS_ANDROID) |
| 85 static int DalvikHeapSizeMB(); | 84 static int DalvikHeapSizeMB(); |
| 86 #endif // defined(OS_ANDROID) | 85 #endif // defined(OS_ANDROID) |
| 87 }; | 86 }; |
| 88 | 87 |
| 89 } // namespace base | 88 } // namespace base |
| 90 | 89 |
| 91 #endif // BASE_SYS_INFO_H_ | 90 #endif // BASE_SYS_INFO_H_ |
| OLD | NEW |