OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # Watchlist Rules | 5 # Watchlist Rules |
6 # Refer: http://dev.chromium.org/developers/contributing-code/watchlists | 6 # Refer: http://dev.chromium.org/developers/contributing-code/watchlists |
7 | 7 |
8 # IMPORTANT: The regular expression filepath is tested against each path using | 8 # IMPORTANT: The regular expression filepath is tested against each path using |
9 # re.search, so it is not usually necessary to add .*. | 9 # re.search, so it is not usually necessary to add .*. |
10 | 10 |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 }, | 141 }, |
142 'rendering': { | 142 'rendering': { |
143 'filepath': 'Source/core/rendering' | 143 'filepath': 'Source/core/rendering' |
144 }, | 144 }, |
145 'compositing': { | 145 'compositing': { |
146 'filepath': 'Source/core/layout/compositing' | 146 'filepath': 'Source/core/layout/compositing' |
147 }, | 147 }, |
148 'layers': { | 148 'layers': { |
149 'filepath': 'Source/core/page/scrolling/ScrollingCoordinator' \ | 149 'filepath': 'Source/core/page/scrolling/ScrollingCoordinator' \ |
150 '|Source/platform/graphics/GraphicsLayer' \ | 150 '|Source/platform/graphics/GraphicsLayer' \ |
151 '|Source/core/rendering/RenderLayer' | 151 '|Source/core/layout/Layer' |
152 }, | 152 }, |
153 "content_security_policy": { | 153 "content_security_policy": { |
154 'filepath': 'Source/core/frame/csp' \ | 154 'filepath': 'Source/core/frame/csp' \ |
155 '|Source/core/events/SecurityPolicyViolationEvent' \ | 155 '|Source/core/events/SecurityPolicyViolationEvent' \ |
156 '|LayoutTests/http/tests/security/contentSecurityPolicy' | 156 '|LayoutTests/http/tests/security/contentSecurityPolicy' |
157 }, | 157 }, |
158 "prerender": { | 158 "prerender": { |
159 'filepath': 'Prerender' \ | 159 'filepath': 'Prerender' \ |
160 '|loader/LinkLoader' \ | 160 '|loader/LinkLoader' \ |
161 '|html/HTMLLinkElement' | 161 '|html/HTMLLinkElement' |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 'battery_status': [ 'timvolodine@chromium.org', | 445 'battery_status': [ 'timvolodine@chromium.org', |
446 'mlamouri+watch-blink@chromium.org' ], | 446 'mlamouri+watch-blink@chromium.org' ], |
447 'out_of_process_frames': [ 'dcheng@chromium.org', | 447 'out_of_process_frames': [ 'dcheng@chromium.org', |
448 'mlamouri+watch-blink@chromium.org' ], | 448 'mlamouri+watch-blink@chromium.org' ], |
449 'device_light': [ 'timvolodine@chromium.org', | 449 'device_light': [ 'timvolodine@chromium.org', |
450 'mlamouri+watch-blink@chromium.org' ], | 450 'mlamouri+watch-blink@chromium.org' ], |
451 'websockets': [ 'tyoshino+watch@chromium.org', 'yhirano+watch@chromium.org'
], | 451 'websockets': [ 'tyoshino+watch@chromium.org', 'yhirano+watch@chromium.org'
], |
452 'xmlhttprequest': [ 'tyoshino+watch@chromium.org' ], | 452 'xmlhttprequest': [ 'tyoshino+watch@chromium.org' ], |
453 }, | 453 }, |
454 } | 454 } |
OLD | NEW |