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

Unified Diff: tools/android/forwarder2/forwarders_manager.cc

Issue 684133002: [Android] Fix gn build for instrumentation tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Follow review Created 6 years, 2 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 | « tools/android/forwarder2/forwarder.gyp ('k') | tools/android/forwarder2/host_forwarder_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/forwarder2/forwarders_manager.cc
diff --git a/tools/android/forwarder2/forwarders_manager.cc b/tools/android/forwarder2/forwarders_manager.cc
index 1795cb5cc01e94f19f5fcd61c33bec28cb14200e..0c0c90471cca1c4ea177a12b6e5b53f57a2d08fc 100644
--- a/tools/android/forwarder2/forwarders_manager.cc
+++ b/tools/android/forwarder2/forwarders_manager.cc
@@ -81,7 +81,7 @@ void ForwardersManager::WaitForEventsOnInternalThread() {
deletion_notifier_.receiver_fd(),
};
- for (int i = 0; i < arraysize(notifier_fds); ++i) {
+ for (size_t i = 0; i < arraysize(notifier_fds); ++i) {
const int notifier_fd = notifier_fds[i];
DCHECK_GT(notifier_fd, -1);
FD_SET(notifier_fd, &read_fds);
« no previous file with comments | « tools/android/forwarder2/forwarder.gyp ('k') | tools/android/forwarder2/host_forwarder_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698