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