| OLD | NEW |
| 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 # 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 29 matching lines...) Expand all Loading... |
| 40 'filepath': 'appcache/', | 40 'filepath': 'appcache/', |
| 41 }, | 41 }, |
| 42 'apps': { | 42 'apps': { |
| 43 'filepath': '^apps/', | 43 'filepath': '^apps/', |
| 44 }, | 44 }, |
| 45 'aura': { | 45 'aura': { |
| 46 'filepath': 'ui/aura/|'\ | 46 'filepath': 'ui/aura/|'\ |
| 47 'ash/', | 47 'ash/', |
| 48 }, | 48 }, |
| 49 'autofill': { | 49 'autofill': { |
| 50 'filepath': 'chrome/browser/api/webdata/|'\ | 50 'filepath': 'chrome/browser/autofill/|'\ |
| 51 'chrome/browser/autofill/|'\ | |
| 52 'chrome/browser/resources/options/autofill_|'\ | 51 'chrome/browser/resources/options/autofill_|'\ |
| 53 'chrome/browser/sync/glue/autofill_|'\ | 52 'chrome/browser/sync/glue/autofill_|'\ |
| 54 'chrome/browser/ui/android/autofill/|'\ | 53 'chrome/browser/ui/android/autofill/|'\ |
| 55 'chrome/browser/ui/autofill/|'\ | 54 'chrome/browser/ui/autofill/|'\ |
| 56 'chrome/browser/ui/cocoa/autofill/|'\ | 55 'chrome/browser/ui/cocoa/autofill/|'\ |
| 57 'chrome/browser/ui/gtk/autofill/|'\ | 56 'chrome/browser/ui/gtk/autofill/|'\ |
| 58 'chrome/browser/ui/views/autofill/|'\ | 57 'chrome/browser/ui/views/autofill/|'\ |
| 59 'chrome/browser/ui/webui/options/autofill_|'\ | 58 'chrome/browser/ui/webui/options/autofill_|'\ |
| 60 'chrome/browser/webdata/|'\ | |
| 61 'chrome/renderer/autofill/|'\ | 59 'chrome/renderer/autofill/|'\ |
| 62 'chrome/test/data/autofill/|'\ | 60 'chrome/test/data/autofill/|'\ |
| 63 'components/autofill/|'\ | 61 'components/autofill/|'\ |
| 62 'components/autofill/browser/webdata/|'\ |
| 63 'components/webdata/|'\ |
| 64 'content/public/common/password_|'\ | 64 'content/public/common/password_|'\ |
| 65 'content/public/renderer/password_|'\ | 65 'content/public/renderer/password_|'\ |
| 66 'content/renderer/password_', | 66 'content/renderer/password_', |
| 67 }, | 67 }, |
| 68 'automation': { | 68 'automation': { |
| 69 'filepath': 'chrome/browser/automation/|chrome/test/automation/', | 69 'filepath': 'chrome/browser/automation/|chrome/test/automation/', |
| 70 }, | 70 }, |
| 71 'base': { | 71 'base': { |
| 72 'filepath': '^base/', | 72 'filepath': '^base/', |
| 73 }, | 73 }, |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 'views': ['tfarina@chromium.org'], | 703 'views': ['tfarina@chromium.org'], |
| 704 'views_core': ['ben+watch@chromium.org'], | 704 'views_core': ['ben+watch@chromium.org'], |
| 705 'website_settings': ['markusheintz@chromium.org'], | 705 'website_settings': ['markusheintz@chromium.org'], |
| 706 'webkit': ['darin-cc@chromium.org'], | 706 'webkit': ['darin-cc@chromium.org'], |
| 707 'worker': ['jam@chromium.org'], | 707 'worker': ['jam@chromium.org'], |
| 708 'x11': ['derat+watch@chromium.org', | 708 'x11': ['derat+watch@chromium.org', |
| 709 'sadrul@chromium.org', | 709 'sadrul@chromium.org', |
| 710 'yusukes+watch@chromium.org'], | 710 'yusukes+watch@chromium.org'], |
| 711 }, | 711 }, |
| 712 } | 712 } |
| OLD | NEW |