| Index: PRESUBMIT.py
 | 
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
 | 
| index e1dec872b147c982a96cd3d90ec54a2643d84f4e..e2d0dd50d092b8699e208273f40864e6061a4d0a 100755
 | 
| --- a/PRESUBMIT.py
 | 
| +++ b/PRESUBMIT.py
 | 
| @@ -575,10 +575,7 @@ def _CommonChecks(input_api, output_api):
 | 
|    results.extend(_CheckJSONParseErrors(input_api, output_api))
 | 
|    results.extend(_RunPythonTests(input_api, output_api))
 | 
|    results.extend(_CheckUsageOfGoogleProtobufNamespace(input_api, output_api))
 | 
| -  # Disabling this because it seems to have a bug when running on Windows.
 | 
| -  # TODO(mbonadei): fix this and re-enable this check.
 | 
| -  # BUG: https://bugs.chromium.org/p/webrtc/issues/detail?id=7635
 | 
| -  # results.extend(_CheckOrphanHeaders(input_api, output_api))
 | 
| +  results.extend(_CheckOrphanHeaders(input_api, output_api))
 | 
|    return results
 | 
|  
 | 
|  
 | 
| 
 |