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

Unified Diff: net/base/network_activity_monitor_unittest.cc

Issue 1160203003: net: Remove the remaining use of GG_(U)INTn_C macros. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stdint.h Created 5 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 | « no previous file | net/cert/cert_verify_proc.cc » ('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..e953a833df8e59eebc54a3b61e046a2f58ddf4d4 100644
--- a/net/base/network_activity_monitor_unittest.cc
+++ b/net/base/network_activity_monitor_unittest.cc
@@ -4,10 +4,10 @@
#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 +101,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 | « no previous file | net/cert/cert_verify_proc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698