[l10n] Don't ignore deleted files for l10n presubmits

For some reason we were not triggering the two l10n presubmits when
deleting files, which is not correct as we want to deal with the
strings from the removed files.

Fixed: 1171253
Change-Id: I25d43b4a955cd46971484d74f753d1d7a474fd55
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2687496
Commit-Queue: Peter Marshall <petermarshall@chromium.org>
Reviewed-by: Tim van der Lippe <tvanderlippe@chromium.org>
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index c28158d..7fbf50c 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -183,7 +183,7 @@
     else:
         devtools_front_end = input_api.os_path.join(devtools_root, 'front_end')
         affected_front_end_files = _getAffectedFiles(
-            input_api, [devtools_front_end], ['D'],
+            input_api, [devtools_front_end], [],
             ['.ts', '.js', '.grdp', '.grd', 'module.json'])
 
         if len(affected_front_end_files) == 0:
@@ -387,7 +387,7 @@
     devtools_root = input_api.PresubmitLocalPath()
     devtools_front_end = input_api.os_path.join(devtools_root, 'front_end')
     affected_front_end_files = _getAffectedFiles(input_api,
-                                                 [devtools_front_end], ['D'],
+                                                 [devtools_front_end], [],
                                                  ['.js', '.ts'])
     if len(affected_front_end_files) == 0:
         return [