author | Andrea Marchesini <amarchesini@mozilla.com> |
Thu, 05 Apr 2018 06:44:31 +0200 | |
changeset 412429 | 351b1460b18517dd4a81e94d16d33291ddfa39d7 |
parent 412428 | 2af150038b3befc44e4cc07f1aab73119f8f7c3d |
child 412430 | 34e219813b64e267139fe6ffd496cc949255f91b |
push id | 33804 |
push user | apavel@mozilla.com |
push date | Mon, 09 Apr 2018 21:56:10 +0000 |
treeherder | mozilla-central@83de58ddda20 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | glandium |
bugs | 1450959 |
milestone | 61.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
mozglue/misc/TimeStamp.h | file | annotate | diff | comparison | revisions | |
mozglue/misc/TimeStamp_windows.h | file | annotate | diff | comparison | revisions |
--- a/mozglue/misc/TimeStamp.h +++ b/mozglue/misc/TimeStamp.h @@ -586,17 +586,16 @@ public: // two TimeStamps, or scaling TimeStamps, is nonsense and must never // be allowed. static MFBT_API void Startup(); static MFBT_API void Shutdown(); private: friend struct IPC::ParamTraits<mozilla::TimeStamp>; - friend void StartupTimelineRecordExternal(int, uint64_t); MOZ_IMPLICIT TimeStamp(TimeStampValue aValue) : mValue(aValue) {} static MFBT_API TimeStamp Now(bool aHighResolution); /** * Computes the uptime of the current process in microseconds. The result * is platform-dependent and needs to be checked against existing timestamps
--- a/mozglue/misc/TimeStamp_windows.h +++ b/mozglue/misc/TimeStamp_windows.h @@ -12,17 +12,16 @@ namespace mozilla { class TimeStamp; class TimeStampValue { friend struct IPC::ParamTraits<mozilla::TimeStampValue>; friend class TimeStamp; - friend void StartupTimelineRecordExternal(int, uint64_t); // Both QPC and GTC are kept in [mt] units. uint64_t mGTC; uint64_t mQPC; bool mHasQPC; bool mIsNull; MFBT_API TimeStampValue(uint64_t aGTC, uint64_t aQPC, bool aHasQPC);