Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Side by Side Diff: PRESUBMIT.py

Issue 2618693004: Mojo JS bindings: make sure that console.log() could be used in the bindings. (Closed)
Patch Set: . Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Top-level presubmit script for Chromium. 5 """Top-level presubmit script for Chromium.
6 6
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
8 for more details about the presubmit API built into depot_tools. 8 for more details about the presubmit API built into depot_tools.
9 """ 9 """
10 10
(...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1164 r"^components[\\\/]html_viewer[\\\/]" 1164 r"^components[\\\/]html_viewer[\\\/]"
1165 r"web_test_delegate_impl\.cc$", 1165 r"web_test_delegate_impl\.cc$",
1166 # TODO(peter): Remove this exception. https://crbug.com/534537 1166 # TODO(peter): Remove this exception. https://crbug.com/534537
1167 r"^content[\\\/]browser[\\\/]notifications[\\\/]" 1167 r"^content[\\\/]browser[\\\/]notifications[\\\/]"
1168 r"notification_event_dispatcher_impl\.cc$", 1168 r"notification_event_dispatcher_impl\.cc$",
1169 r"^content[\\\/]common[\\\/]gpu[\\\/]client[\\\/]" 1169 r"^content[\\\/]common[\\\/]gpu[\\\/]client[\\\/]"
1170 r"gl_helper_benchmark\.cc$", 1170 r"gl_helper_benchmark\.cc$",
1171 r"^courgette[\\\/]courgette_minimal_tool\.cc$", 1171 r"^courgette[\\\/]courgette_minimal_tool\.cc$",
1172 r"^courgette[\\\/]courgette_tool\.cc$", 1172 r"^courgette[\\\/]courgette_tool\.cc$",
1173 r"^extensions[\\\/]renderer[\\\/]logging_native_handler\.cc$", 1173 r"^extensions[\\\/]renderer[\\\/]logging_native_handler\.cc$",
1174 r"^ios[\\\/]web[\\\/]webui[\\\/]mojo_facade\.mm$",
1174 r"^ipc[\\\/]ipc_logging\.cc$", 1175 r"^ipc[\\\/]ipc_logging\.cc$",
1175 r"^native_client_sdk[\\\/]", 1176 r"^native_client_sdk[\\\/]",
1176 r"^remoting[\\\/]base[\\\/]logging\.h$", 1177 r"^remoting[\\\/]base[\\\/]logging\.h$",
1177 r"^remoting[\\\/]host[\\\/].*", 1178 r"^remoting[\\\/]host[\\\/].*",
1178 r"^sandbox[\\\/]linux[\\\/].*", 1179 r"^sandbox[\\\/]linux[\\\/].*",
1179 r"^tools[\\\/]", 1180 r"^tools[\\\/]",
1180 r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$", 1181 r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$",
1181 r"^ui[\\\/]ozone[\\\/]platform[\\\/]cast[\\\/]", 1182 r"^ui[\\\/]ozone[\\\/]platform[\\\/]cast[\\\/]",
1182 r"^storage[\\\/]browser[\\\/]fileapi[\\\/]" + 1183 r"^storage[\\\/]browser[\\\/]fileapi[\\\/]" +
1183 r"dump_file_system.cc$", 1184 r"dump_file_system.cc$",
(...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after
2343 results.extend(input_api.canned_checks.CheckTreeIsOpen( 2344 results.extend(input_api.canned_checks.CheckTreeIsOpen(
2344 input_api, 2345 input_api,
2345 output_api, 2346 output_api,
2346 json_url='http://chromium-status.appspot.com/current?format=json')) 2347 json_url='http://chromium-status.appspot.com/current?format=json'))
2347 2348
2348 results.extend(input_api.canned_checks.CheckChangeHasBugField( 2349 results.extend(input_api.canned_checks.CheckChangeHasBugField(
2349 input_api, output_api)) 2350 input_api, output_api))
2350 results.extend(input_api.canned_checks.CheckChangeHasDescription( 2351 results.extend(input_api.canned_checks.CheckChangeHasDescription(
2351 input_api, output_api)) 2352 input_api, output_api))
2352 return results 2353 return results
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698