Skip to content
This repository has been archived by the owner on Jan 4, 2019. It is now read-only.

Commit

Permalink
window signed/unsigned int
Browse files Browse the repository at this point in the history
  • Loading branch information
bridiver committed Sep 12, 2017
1 parent e2b173b commit 0a0782e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brave/browser/brave_permission_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ void BravePermissionManager::CancelPermissionRequest(int request_id) {
if (!WebContentsDestroyed(
request->second.render_process_id, request->second.render_frame_id)) {
std::vector<blink::mojom::PermissionStatus> permissionStatuses;
for (int i = 0; i < request->second.size; i++) {
for (size_t i = 0; i < request->second.size; i++) {
permissionStatuses.push_back(blink::mojom::PermissionStatus::DENIED);
}
request->second.callback.Run(permissionStatuses);
Expand Down

0 comments on commit 0a0782e

Please sign in to comment.