OLD | NEW |
---|---|
1 // Copyright (c) 2006-2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_CPU_H_ | 5 #ifndef BASE_CPU_H_ |
6 #define BASE_CPU_H_ | 6 #define BASE_CPU_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/base_api.h" | |
9 #include "build/build_config.h" | 10 #include "build/build_config.h" |
10 | 11 |
11 #include <string> | 12 #include <string> |
wtc
2011/03/25 17:35:42
This header should not need to include build_confi
rvargas (doing something else)
2011/03/25 17:59:56
Done.
| |
12 | 13 |
13 namespace base { | 14 namespace base { |
14 | 15 |
15 // Query information about the processor. | 16 // Query information about the processor. |
16 class CPU { | 17 class BASE_API CPU { |
17 public: | 18 public: |
18 // Constructor | 19 // Constructor |
19 CPU(); | 20 CPU(); |
20 | 21 |
21 // Accessors for CPU information. | 22 // Accessors for CPU information. |
22 const std::string& vendor_name() const { return cpu_vendor_; } | 23 const std::string& vendor_name() const { return cpu_vendor_; } |
23 int stepping() const { return stepping_; } | 24 int stepping() const { return stepping_; } |
24 int model() const { return model_; } | 25 int model() const { return model_; } |
25 int family() const { return family_; } | 26 int family() const { return family_; } |
26 int type() const { return type_; } | 27 int type() const { return type_; } |
(...skipping 23 matching lines...) Expand all Loading... | |
50 bool has_sse3_; | 51 bool has_sse3_; |
51 bool has_ssse3_; | 52 bool has_ssse3_; |
52 bool has_sse41_; | 53 bool has_sse41_; |
53 bool has_sse42_; | 54 bool has_sse42_; |
54 std::string cpu_vendor_; | 55 std::string cpu_vendor_; |
55 }; | 56 }; |
56 | 57 |
57 } // namespace base | 58 } // namespace base |
58 | 59 |
59 #endif // BASE_CPU_H_ | 60 #endif // BASE_CPU_H_ |
OLD | NEW |