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

Unified Diff: content/common/inter_process_time_ticks_converter.h

Issue 8972008: Build fix for 114736. Add missing exports. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/inter_process_time_ticks_converter.h
diff --git a/content/common/inter_process_time_ticks_converter.h b/content/common/inter_process_time_ticks_converter.h
index 0377764e040dcfa6bbaa512d8aa70750875643c5..49a7c70b16f9405b16c42d7758bcf334b110686d 100644
--- a/content/common/inter_process_time_ticks_converter.h
+++ b/content/common/inter_process_time_ticks_converter.h
@@ -6,6 +6,7 @@
#define CONTENT_COMMON_INTER_PROCESS_TIME_TICKS_CONVERTER_H_
#include "base/time.h"
+#include "content/common/content_export.h"
namespace content {
@@ -45,7 +46,7 @@ class RemoteTimeTicks;
//
// 2. The remote's range is shifted so that it is centered within the
// local's range. Any values converted will be shifted the same amount.
-class InterProcessTimeTicksConverter {
+class CONTENT_EXPORT InterProcessTimeTicksConverter {
public:
InterProcessTimeTicksConverter(const LocalTimeTicks& local_lower_bound,
const LocalTimeTicks& local_upper_bound,
@@ -71,7 +72,7 @@ class InterProcessTimeTicksConverter {
int64 remote_upper_bound_;
};
-class LocalTimeDelta {
+class CONTENT_EXPORT LocalTimeDelta {
public:
int ToInt32() const { return value_; }
@@ -84,7 +85,7 @@ class LocalTimeDelta {
int value_;
};
-class LocalTimeTicks {
+class CONTENT_EXPORT LocalTimeTicks {
public:
static LocalTimeTicks FromTimeTicks(const base::TimeTicks& value) {
return LocalTimeTicks(value.ToInternalValue());
@@ -106,7 +107,7 @@ class LocalTimeTicks {
int64 value_;
};
-class RemoteTimeDelta {
+class CONTENT_EXPORT RemoteTimeDelta {
public:
static RemoteTimeDelta FromRawDelta(int delta) {
return RemoteTimeDelta(delta);
@@ -121,7 +122,7 @@ class RemoteTimeDelta {
int value_;
};
-class RemoteTimeTicks {
+class CONTENT_EXPORT RemoteTimeTicks {
public:
static RemoteTimeTicks FromTimeTicks(const base::TimeTicks& ticks) {
return RemoteTimeTicks(ticks.ToInternalValue());
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698