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

Unified Diff: base/time.h

Issue 6729002: Base: A few more files using BASE_API (for base.dll) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 9 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/thread_restrictions.h ('k') | base/tracked.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 78949)
+++ base/time.h (working copy)
@@ -25,6 +25,7 @@
#include <time.h>
+#include "base/base_api.h"
#include "base/basictypes.h"
#if defined(OS_POSIX)
@@ -48,7 +49,7 @@
// TimeDelta ------------------------------------------------------------------
-class TimeDelta {
+class BASE_API TimeDelta {
public:
TimeDelta() : delta_(0) {
}
@@ -178,7 +179,7 @@
// Time -----------------------------------------------------------------------
// Represents a wall clock time.
-class Time {
+class BASE_API Time {
public:
static const int64 kMillisecondsPerSecond = 1000;
static const int64 kMicrosecondsPerMillisecond = 1000;
@@ -449,7 +450,7 @@
// TimeTicks ------------------------------------------------------------------
-class TimeTicks {
+class BASE_API TimeTicks {
public:
TimeTicks() : ticks_(0) {
}
« no previous file with comments | « base/threading/thread_restrictions.h ('k') | base/tracked.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698