| Index: content/renderer/compositor_bindings/PRESUBMIT.py
 | 
| diff --git a/content/renderer/compositor_bindings/PRESUBMIT.py b/content/renderer/compositor_bindings/PRESUBMIT.py
 | 
| deleted file mode 100644
 | 
| index 8e4e571848315a9fdc3383ac4f7401eebda5d6f0..0000000000000000000000000000000000000000
 | 
| --- a/content/renderer/compositor_bindings/PRESUBMIT.py
 | 
| +++ /dev/null
 | 
| @@ -1,33 +0,0 @@
 | 
| -# Copyright 2014 The Chromium Authors. All rights reserved.
 | 
| -# Use of this source code is governed by a BSD-style license that can be
 | 
| -# found in the LICENSE file.
 | 
| -
 | 
| -"""
 | 
| -See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
 | 
| -details on the presubmit API built into gcl.
 | 
| -"""
 | 
| -
 | 
| -SOURCE_FILES = (r'^.*\.(cc|h)$')
 | 
| -
 | 
| -def CheckChangeLintsClean(input_api, output_api):
 | 
| -  input_api.cpplint._cpplint_state.ResetErrorCounts()  # reset global state
 | 
| -  source_filter = lambda x: input_api.FilterSourceFile(
 | 
| -    x, white_list=SOURCE_FILES, black_list=None)
 | 
| -  files = [f.AbsoluteLocalPath() for f in
 | 
| -           input_api.AffectedSourceFiles(source_filter)]
 | 
| -  level = 1  # strict, but just warn
 | 
| -
 | 
| -  for file_name in files:
 | 
| -    input_api.cpplint.ProcessFile(file_name, level)
 | 
| -
 | 
| -  if not input_api.cpplint._cpplint_state.error_count:
 | 
| -    return []
 | 
| -
 | 
| -  return [output_api.PresubmitPromptWarning(
 | 
| -    'Changelist failed cpplint.py check.')]
 | 
| -
 | 
| -
 | 
| -def CheckChangeOnUpload(input_api, output_api):
 | 
| -  results = []
 | 
| -  results += CheckChangeLintsClean(input_api, output_api)
 | 
| -  return results
 | 
| 
 |