Commit 875bacd7 authored by My Nguyen's avatar My Nguyen Committed by Commit Bot

Remove use of long long

In preparation for moving ui/chromeos/ime to
chrome/browser/chromeos/input_method/ui, fix presubmit errors.

Change-Id: I488bf5d81a3b541d8954c89456a15aafe0602323
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2228429Reviewed-by: default avatarKeith Lee <keithlee@chromium.org>
Commit-Queue: My Nguyen <myy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#776377}
parent ffa1af2b
...@@ -55,10 +55,8 @@ void InitCandidateWindowWithCandidatesFilled( ...@@ -55,10 +55,8 @@ void InitCandidateWindowWithCandidatesFilled(
InitCandidateWindow(page_size, candidate_window); InitCandidateWindow(page_size, candidate_window);
for (size_t i = 0; i < page_size; ++i) { for (size_t i = 0; i < page_size; ++i) {
ui::CandidateWindow::Entry entry; ui::CandidateWindow::Entry entry;
entry.value = base::UTF8ToUTF16(base::StringPrintf( entry.value = base::UTF8ToUTF16(base::StringPrintf("value %zu", i));
"value %lld", static_cast<unsigned long long>(i))); entry.label = base::UTF8ToUTF16(base::StringPrintf("%zu", i));
entry.label = base::UTF8ToUTF16(base::StringPrintf(
"%lld", static_cast<unsigned long long>(i)));
candidate_window->mutable_candidates()->push_back(entry); candidate_window->mutable_candidates()->push_back(entry);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment