Skip to content

Commit

Permalink
Update VR PRESUBMITs to inclusive language
Browse files Browse the repository at this point in the history
Convert "white_list" from the PRESUBMIT input_api to the newer variable
name "files_to_check"

Change-Id: If2751802ad6b3da3cd365bca506b4fee995db0ef
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2313996
Commit-Queue: Alexander Cooper <alcooper@chromium.org>
Commit-Queue: Brian Sheedy <bsheedy@chromium.org>
Auto-Submit: Alexander Cooper <alcooper@chromium.org>
Reviewed-by: Brian Sheedy <bsheedy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#790936}
  • Loading branch information
alcooper91 authored and Commit Bot committed Jul 22, 2020
1 parent b0b7e17 commit fff3d68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chrome/browser/android/vr/PRESUBMIT.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

def _CheckChangeLintsClean(input_api, output_api):
sources = lambda x: input_api.FilterSourceFile(
x, white_list=INCLUDE_CPP_FILES_ONLY)
x, files_to_check=INCLUDE_CPP_FILES_ONLY)
return input_api.canned_checks.CheckChangeLintsClean(
input_api, output_api, sources, LINT_FILTERS, VERBOSITY_LEVEL)

Expand Down
2 changes: 1 addition & 1 deletion chrome/browser/vr/PRESUBMIT.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

def _CheckChangeLintsClean(input_api, output_api):
sources = lambda x: input_api.FilterSourceFile(
x, white_list=INCLUDE_CPP_FILES_ONLY)
x, files_to_check=INCLUDE_CPP_FILES_ONLY)
return input_api.canned_checks.CheckChangeLintsClean(
input_api, output_api, sources, LINT_FILTERS, VERBOSITY_LEVEL)

Expand Down

0 comments on commit fff3d68

Please sign in to comment.