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

Unified Diff: chrome/browser/android/rlz/rlz_ping_handler.cc

Issue 2890413003: Explicitly use bool instead of jboolean (Closed)
Patch Set: Created 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/rlz/rlz_ping_handler.cc
diff --git a/chrome/browser/android/rlz/rlz_ping_handler.cc b/chrome/browser/android/rlz/rlz_ping_handler.cc
index 53723c44945943f478afea9f1ef53164e9d15f0d..cc4d9f85cfdefbe788879a8bd2e0ee71ecd312b5 100644
--- a/chrome/browser/android/rlz/rlz_ping_handler.cc
+++ b/chrome/browser/android/rlz/rlz_ping_handler.cc
@@ -106,7 +106,7 @@ void RlzPingHandler::Ping(
void RlzPingHandler::OnURLFetchComplete(const net::URLFetcher* source) {
DCHECK_EQ(source, url_fetcher_.get());
- jboolean valid = false;
+ bool valid = false;
if (!source->GetStatus().is_success() ||
source->GetResponseCode() != net::HTTP_OK) {
LOG(WARNING) << base::StringPrintf("Rlz endpoint responded with code %d.",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698