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

Unified Diff: base/time.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/threading/worker_pool_posix.h ('k') | base/timer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/time.h
===================================================================
--- base/time.h (revision 95578)
+++ base/time.h (working copy)
@@ -26,7 +26,7 @@
#include <time.h>
#include "base/atomicops.h"
-#include "base/base_api.h"
+#include "base/base_export.h"
#include "base/basictypes.h"
#if defined(OS_POSIX)
@@ -47,7 +47,7 @@
// TimeDelta ------------------------------------------------------------------
-class BASE_API TimeDelta {
+class BASE_EXPORT TimeDelta {
public:
TimeDelta() : delta_(0) {
}
@@ -177,7 +177,7 @@
// Time -----------------------------------------------------------------------
// Represents a wall clock time.
-class BASE_API Time {
+class BASE_EXPORT Time {
public:
static const int64 kMillisecondsPerSecond = 1000;
static const int64 kMicrosecondsPerMillisecond = 1000;
@@ -203,7 +203,7 @@
// Represents an exploded time that can be formatted nicely. This is kind of
// like the Win32 SYSTEMTIME structure or the Unix "struct tm" with a few
// additions and changes to prevent errors.
- struct BASE_API Exploded {
+ struct BASE_EXPORT Exploded {
int year; // Four digit year "2007"
int month; // 1-based month (values 1 = January, etc.)
int day_of_week; // 0-based day of week (0 = Sunday, etc.)
@@ -457,7 +457,7 @@
// TimeTicks ------------------------------------------------------------------
-class BASE_API TimeTicks {
+class BASE_EXPORT TimeTicks {
public:
TimeTicks() : ticks_(0) {
}
« no previous file with comments | « base/threading/worker_pool_posix.h ('k') | base/timer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698