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

Unified Diff: net/base/network_activity_monitor_unittest.cc

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 9 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 | « net/base/net_util_icu.cc ('k') | net/base/network_change_notifier.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/network_activity_monitor_unittest.cc
diff --git a/net/base/network_activity_monitor_unittest.cc b/net/base/network_activity_monitor_unittest.cc
index e625c55409d1510253f7b536f01e3282d36581ed..ed3e4a4a2073432d11880d6ed108bc8747ba27d5 100644
--- a/net/base/network_activity_monitor_unittest.cc
+++ b/net/base/network_activity_monitor_unittest.cc
@@ -4,10 +4,11 @@
#include "net/base/network_activity_monitor.h"
+#include <stdint.h>
+
#include <vector>
#include "base/bind.h"
-#include "base/port.h"
#include "base/stl_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/synchronization/lock.h"
@@ -101,8 +102,8 @@ TEST_F(NetworkActivityMontiorTest, Threading) {
}
size_t num_increments = 157;
- uint64_t bytes_received = GG_UINT64_C(7294954321);
- uint64_t bytes_sent = GG_UINT64_C(91294998765);
+ uint64_t bytes_received = UINT64_C(7294954321);
+ uint64_t bytes_sent = UINT64_C(91294998765);
for (size_t i = 0; i < num_increments; ++i) {
size_t thread_num = i % threads.size();
threads[thread_num]->task_runner()->PostTask(
« no previous file with comments | « net/base/net_util_icu.cc ('k') | net/base/network_change_notifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698