☠☠ backed out by 9e8eeee62ffb ☠ ☠ | |
author | Andrea Marchesini <amarchesini@mozilla.com> |
Thu, 05 Apr 2018 06:44:31 +0200 | |
changeset 411895 | e72d2ab40d64f67d61207a31093b38e09a7c92c1 |
parent 411859 | f1307a26d16715c99a218ce848f09f97f39b8c37 |
child 411896 | 236c11a47aa76a80072cef75cbd4971a55419413 |
push id | 33774 |
push user | nerli@mozilla.com |
push date | Thu, 05 Apr 2018 15:16:07 +0000 |
treeherder | mozilla-central@110f32790d38 [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);