Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Side by Side Diff: base/cpu.h

Issue 7461141: Rename BASE_API to BASE_EXPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/command_line.h ('k') | base/debug/alias.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 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 <string> 9 #include <string>
10 10
11 #include "base/base_api.h" 11 #include "base/base_export.h"
12 12
13 namespace base { 13 namespace base {
14 14
15 // Query information about the processor. 15 // Query information about the processor.
16 class BASE_API CPU { 16 class BASE_EXPORT CPU {
17 public: 17 public:
18 // Constructor 18 // Constructor
19 CPU(); 19 CPU();
20 20
21 // Accessors for CPU information. 21 // Accessors for CPU information.
22 const std::string& vendor_name() const { return cpu_vendor_; } 22 const std::string& vendor_name() const { return cpu_vendor_; }
23 int stepping() const { return stepping_; } 23 int stepping() const { return stepping_; }
24 int model() const { return model_; } 24 int model() const { return model_; }
25 int family() const { return family_; } 25 int family() const { return family_; }
26 int type() const { return type_; } 26 int type() const { return type_; }
(...skipping 23 matching lines...) Expand all
50 bool has_sse3_; 50 bool has_sse3_;
51 bool has_ssse3_; 51 bool has_ssse3_;
52 bool has_sse41_; 52 bool has_sse41_;
53 bool has_sse42_; 53 bool has_sse42_;
54 std::string cpu_vendor_; 54 std::string cpu_vendor_;
55 }; 55 };
56 56
57 } // namespace base 57 } // namespace base
58 58
59 #endif // BASE_CPU_H_ 59 #endif // BASE_CPU_H_
OLDNEW
« no previous file with comments | « base/command_line.h ('k') | base/debug/alias.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698