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

Unified Diff: webrtc/system_wrappers/test/TestSort/TestSort.cc

Issue 1888593004: Delete all use of tick_util.h. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 7 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 | « webrtc/system_wrappers/system_wrappers.gyp ('k') | webrtc/video/call_stats.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/system_wrappers/test/TestSort/TestSort.cc
diff --git a/webrtc/system_wrappers/test/TestSort/TestSort.cc b/webrtc/system_wrappers/test/TestSort/TestSort.cc
index b2b9f85755330ea11d92f3633d42412a6e627c01..8c585abb67413fa769cb76330d17d2736cff7699 100644
--- a/webrtc/system_wrappers/test/TestSort/TestSort.cc
+++ b/webrtc/system_wrappers/test/TestSort/TestSort.cc
@@ -13,8 +13,8 @@
#include <algorithm>
+#include "webrtc/base/timeutils.h"
#include "webrtc/system_wrappers/include/sort.h"
-#include "webrtc/system_wrappers/include/tick_util.h"
// Excellent work polluting the global namespace Visual Studio...
#undef max
@@ -144,7 +144,7 @@ void RunSortTest(webrtc::Type sortType, bool keySort)
printf("Running %s Sort() tests...\n", TypeEnumToString(sortType));
}
- TickInterval accTicks;
+ int64_t accTicks;
for (int i = 0; i < NumOfTests; i++)
{
for (int j = 0; j < DataLength; j++)
@@ -159,7 +159,7 @@ void RunSortTest(webrtc::Type sortType, bool keySort)
memcpy(keyRef, key, sizeof(key));
retVal = 0;
- TickTime t0 = TickTime::Now();
+ int64_t t0 = rtc::TimeNanos();
if (keySort)
{
retVal = webrtc::KeySort(data, key, DataLength, sizeof(LotsOfData<KeyType>),
@@ -176,7 +176,7 @@ void RunSortTest(webrtc::Type sortType, bool keySort)
//std::sort(key, key + DataLength);
//qsort(key, DataLength, sizeof(KeyType), Compare<KeyType>);
}
- TickTime t1 = TickTime::Now();
+ int64_t t1 = rtc::TimeNanos();
accTicks += (t1 - t0);
if (retVal != 0)
@@ -236,7 +236,7 @@ void RunSortTest(webrtc::Type sortType, bool keySort)
printf("Compliance test passed over %d iterations\n", NumOfTests);
- int64_t executeTime = accTicks.Milliseconds();
+ int64_t executeTime = accTicks / rtc::kNumNanosecsPerMillisec;
printf("Execute time: %.2f s\n\n", (float)executeTime / 1000);
}
« no previous file with comments | « webrtc/system_wrappers/system_wrappers.gyp ('k') | webrtc/video/call_stats.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698