summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/wtf/CurrentTime.cpp
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-01-25 11:39:07 +0100
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-01-25 15:20:42 +0000
commit6c91641271e536ffaa88a1dff5127e42ee99a91e (patch)
tree703d9dd49602377ddc90cbf886aad37913f2496b /chromium/third_party/WebKit/Source/wtf/CurrentTime.cpp
parentb145b7fafd36f0c260d6a768c81fc14e32578099 (diff)
BASELINE: Update Chromium to 49.0.2623.23
Also adds missing printing sources. Change-Id: I3726b8f0c7d6751c9fc846096c571fadca7108cd Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'chromium/third_party/WebKit/Source/wtf/CurrentTime.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/wtf/CurrentTime.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/chromium/third_party/WebKit/Source/wtf/CurrentTime.cpp b/chromium/third_party/WebKit/Source/wtf/CurrentTime.cpp
index 17e19d193b0..c29636f98c9 100644
--- a/chromium/third_party/WebKit/Source/wtf/CurrentTime.cpp
+++ b/chromium/third_party/WebKit/Source/wtf/CurrentTime.cpp
@@ -28,14 +28,12 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "config.h"
#include "wtf/CurrentTime.h"
namespace WTF {
static TimeFunction currentTimeFunction;
static TimeFunction monotonicallyIncreasingTimeFunction;
-static TimeFunction systemTraceTimeFunction;
void setCurrentTimeFunction(TimeFunction func)
{
@@ -47,11 +45,6 @@ void setMonotonicallyIncreasingTimeFunction(TimeFunction func)
monotonicallyIncreasingTimeFunction = func;
}
-void setSystemTraceTimeFunction(TimeFunction func)
-{
- systemTraceTimeFunction = func;
-}
-
double currentTime()
{
return (*currentTimeFunction)();
@@ -62,9 +55,4 @@ double monotonicallyIncreasingTime()
return (*monotonicallyIncreasingTimeFunction)();
}
-double systemTraceTime()
-{
- return (*systemTraceTimeFunction)();
-}
-
} // namespace WTF