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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'media_queries': { | 166 'media_queries': { |
167 'filepath': 'Source/core/css/CSSMediaRule' \ | 167 'filepath': 'Source/core/css/CSSMediaRule' \ |
168 '|Source/core/css/MediaList' \ | 168 '|Source/core/css/MediaList' \ |
169 '|Source/core/css/MediaQuery' \ | 169 '|Source/core/css/MediaQuery' \ |
170 '|Source/core/css/parser/MediaQuery' | 170 '|Source/core/css/parser/MediaQuery' |
171 }, | 171 }, |
172 'navigator_content_utils': { | 172 'navigator_content_utils': { |
173 'filepath': 'Source/modules/navigatorcontentutils' \ | 173 'filepath': 'Source/modules/navigatorcontentutils' \ |
174 '|LayoutTests/fast/dom/navigatorcontentutils' | 174 '|LayoutTests/fast/dom/navigatorcontentutils' |
175 }, | 175 }, |
| 176 'out_of_process_frames': { |
| 177 'filepath': 'Source/core/frame/FrameOwner' \ |
| 178 '|Source/web/WebRemoteFrameImpl' \ |
| 179 }, |
176 'fileapi': { | 180 'fileapi': { |
177 'filepath': 'Source/modules/filesystem/' \ | 181 'filepath': 'Source/modules/filesystem/' \ |
178 '|Source/core/fileapi/' \ | 182 '|Source/core/fileapi/' \ |
179 '|Source/platform/.*File' \ | 183 '|Source/platform/.*File' \ |
180 '|Source/web/.*File' \ | 184 '|Source/web/.*File' \ |
181 '|LayoutTests/fast/file' \ | 185 '|LayoutTests/fast/file' \ |
182 '|public/.*File' | 186 '|public/.*File' |
183 }, | 187 }, |
184 'quota': { | 188 'quota': { |
185 'filepath': 'Source/modules/quota/' \ | 189 'filepath': 'Source/modules/quota/' \ |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 'spellcheck' : [ 'groby+blinkspell@chromium.org' ], | 382 'spellcheck' : [ 'groby+blinkspell@chromium.org' ], |
379 'device_orientation': [ 'timvolodine@chromium.org', 'mvanouwerkerk+watch@chr
omium.org', 'ch.dumez@samsung.com' ], | 383 'device_orientation': [ 'timvolodine@chromium.org', 'mvanouwerkerk+watch@chr
omium.org', 'ch.dumez@samsung.com' ], |
380 'activity_logger': [ 'watchdog-blink-watchlist@google.com' ], | 384 'activity_logger': [ 'watchdog-blink-watchlist@google.com' ], |
381 'webp': [ 'urvang@google.com', | 385 'webp': [ 'urvang@google.com', |
382 'jzern@chromium.org', | 386 'jzern@chromium.org', |
383 'skal@google.com', | 387 'skal@google.com', |
384 'vikasa@google.com' ], | 388 'vikasa@google.com' ], |
385 'css_grid_layout': [ 'svillar@igalia.com', 'jfernandez@igalia.com', 'rego@ig
alia.com' ], | 389 'css_grid_layout': [ 'svillar@igalia.com', 'jfernandez@igalia.com', 'rego@ig
alia.com' ], |
386 'css_flexbox': [ 'cbiesinger@chromium.org' ], | 390 'css_flexbox': [ 'cbiesinger@chromium.org' ], |
387 'battery_status': [ 'timvolodine@chromium.org' ], | 391 'battery_status': [ 'timvolodine@chromium.org' ], |
| 392 'out_of_process_frames': [ 'dcheng@chromium.org' ], |
388 }, | 393 }, |
389 } | 394 } |
OLD | NEW |