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

Unified Diff: ppapi/shared_impl/time_conversion.h

Issue 7687005: Create ppapi_proxy.dll. (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 | « ppapi/shared_impl/scoped_pp_resource.h ('k') | ppapi/shared_impl/tracker_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/time_conversion.h
===================================================================
--- ppapi/shared_impl/time_conversion.h (revision 98434)
+++ ppapi/shared_impl/time_conversion.h (working copy)
@@ -7,20 +7,21 @@
#include "base/time.h"
#include "ppapi/c/pp_time.h"
+#include "ppapi/shared_impl/ppapi_shared_export.h"
namespace ppapi {
-PP_Time TimeToPPTime(base::Time t);
-base::Time PPTimeToTime(PP_Time t);
+PPAPI_SHARED_EXPORT PP_Time TimeToPPTime(base::Time t);
+PPAPI_SHARED_EXPORT base::Time PPTimeToTime(PP_Time t);
-PP_TimeTicks TimeTicksToPPTimeTicks(base::TimeTicks t);
+PPAPI_SHARED_EXPORT PP_TimeTicks TimeTicksToPPTimeTicks(base::TimeTicks t);
// Converts between WebKit event times and time ticks. WebKit event times are
// currently expressed in terms of wall clock time. This function does the
// proper mapping to time ticks, assuming the wall clock time doesn't change
// (which isn't necessarily the case).
-PP_TimeTicks EventTimeToPPTimeTicks(double event_time);
-double PPTimeTicksToEventTime(PP_TimeTicks t);
+PPAPI_SHARED_EXPORT PP_TimeTicks EventTimeToPPTimeTicks(double event_time);
+PPAPI_SHARED_EXPORT double PPTimeTicksToEventTime(PP_TimeTicks t);
} // namespace ppapi
« no previous file with comments | « ppapi/shared_impl/scoped_pp_resource.h ('k') | ppapi/shared_impl/tracker_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698