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

Side by Side Diff: WATCHLISTS

Issue 2859583003: [Media Router] Updates WATCHLISTS (Closed)
Patch Set: Fix presentation Created 3 years, 7 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 | no next file » | 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 # 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 '|chrome/browser/media/cast'\ 258 '|chrome/browser/media/cast'\
259 '|chrome/renderer/media/cast'\ 259 '|chrome/renderer/media/cast'\
260 '|chrome/test/data/extensions/api_test/cast_'\ 260 '|chrome/test/data/extensions/api_test/cast_'\
261 '|content/public/renderer/media_stream_'\ 261 '|content/public/renderer/media_stream_'\
262 '|content/renderer/media/(media_stream|(.+audio_source))', 262 '|content/renderer/media/(media_stream|(.+audio_source))',
263 }, 263 },
264 'cast_certificate': { 264 'cast_certificate': {
265 'filepath': 'components/cast_certificate/'\ 265 'filepath': 'components/cast_certificate/'\
266 '|components/test/data/cast_certificate/', 266 '|components/test/data/cast_certificate/',
267 }, 267 },
268 'cast_channel': {
269 'filepath': 'chrome/test/data/extensions/api_test/cast_channel/' \
270 '|extensions/(browser|common)/api/cast_channel'
271 },
268 'certificate_transparency': { 272 'certificate_transparency': {
269 'filepath': 'components/certificate_transparency/'\ 273 'filepath': 'components/certificate_transparency/'\
270 '|components/packed_ct_ev_whitelist/'\ 274 '|components/packed_ct_ev_whitelist/'\
271 '|net/cert/ct_'\ 275 '|net/cert/ct_'\
272 '|net/cert/multi_log_ct_verifier'\ 276 '|net/cert/multi_log_ct_verifier'\
273 '|net/cert/sct_status_flags.h'\ 277 '|net/cert/sct_status_flags.h'\
274 '|net/cert/signed_certificate_timestamp'\ 278 '|net/cert/signed_certificate_timestamp'\
275 '|net/cert/signed_tree_head'\ 279 '|net/cert/signed_tree_head'\
276 '|net/test/ct_', 280 '|net/test/ct_',
277 }, 281 },
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 'content/renderer/device_sensors/|'\ 423 'content/renderer/device_sensors/|'\
420 'content/test/data/device_sensors/|'\ 424 'content/test/data/device_sensors/|'\
421 'device/sensors/', 425 'device/sensors/',
422 }, 426 },
423 'developer_recommended_flags': { 427 'developer_recommended_flags': {
424 'filepath': 'developer_recommended_flags.gypi', 428 'filepath': 'developer_recommended_flags.gypi',
425 }, 429 },
426 'devtools': { 430 'devtools': {
427 'filepath': 'devtools', 431 'filepath': 'devtools',
428 }, 432 },
433 'dial': {
434 'filepath': 'chrome/(browser|common)/extensions/api/dial' \
435 '|chrome/browser/media/router/discovery/dial/' \
436 '|chrome/test/data/extensions/api_test/dial/'
437 },
429 'disk_cache': { 438 'disk_cache': {
430 'filepath': 'net/disk_cache/|http_cache', 439 'filepath': 'net/disk_cache/|http_cache',
431 }, 440 },
432 'download': { 441 'download': {
433 'filepath': 'chrome/browser/download/|'\ 442 'filepath': 'chrome/browser/download/|'\
434 'content/browser/download/', 443 'content/browser/download/',
435 }, 444 },
436 'downloads_ui': { 445 'downloads_ui': {
437 'filepath': 'chrome/browser/resources/(md_)?downloads/|' \ 446 'filepath': 'chrome/browser/resources/(md_)?downloads/|' \
438 'chrome/browser/ui/webui/.*downloads|' \ 447 'chrome/browser/ui/webui/.*downloads|' \
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 '|third_party/WebKit/LayoutTests/fast/mediarecorder/' \ 675 '|third_party/WebKit/LayoutTests/fast/mediarecorder/' \
667 '|third_party/WebKit/public/platform/WebMediaRecorder' 676 '|third_party/WebKit/public/platform/WebMediaRecorder'
668 }, 677 },
669 'media_remoting': { 678 'media_remoting': {
670 'filepath': 'chrome/browser/media/cast_remoting'\ 679 'filepath': 'chrome/browser/media/cast_remoting'\
671 '|media/blink/webmediaplayer_'\ 680 '|media/blink/webmediaplayer_'\
672 '|media/mojo/interfaces/remoting.mojom'\ 681 '|media/mojo/interfaces/remoting.mojom'\
673 '|media/remoting/', 682 '|media/remoting/',
674 }, 683 },
675 'media_router': { 684 'media_router': {
676 'filepath': 'chrome/browser/media/router/*' \ 685 'filepath': 'chrome/android/java/src/org/chromium/chrome/browser/media/rou ter/' \
686 'chrome/android/junit/src/org/chromium/chrome/browser/media/ro uter/' \
Wez 2017/05/02 23:50:59 Looks like you're missing a | at the start of this
mark a. foltz 2017/05/03 06:01:08 Fixed.
677 '|chrome/app/theme/*/common/media_router*' \ 687 '|chrome/app/theme/*/common/media_router*' \
Wez 2017/05/02 23:50:59 Are there still files under chrome/app/theme/ ...
mark a. foltz 2017/05/03 06:01:08 Good catch, removed
688 '|chrome/browser/media/router/' \
678 '|chrome/browser/resources/media_router/' \ 689 '|chrome/browser/resources/media_router/' \
690 '|chrome/browser/ui/views/media_router/' \
679 '|chrome/browser/ui/webui/media_router/' \ 691 '|chrome/browser/ui/webui/media_router/' \
680 '|chrome/test/media_router/', 692 '|chrome/common/media/router/' \
693 '|chrome/test/data/webui/media_router/' \
694 '|chrome/test/media_router/' \
695 '|chrome/utility/media_router/'
681 }, 696 },
682 'memory_coordinator': { 697 'memory_coordinator': {
683 'filepath': 'base/memory/memory_|' \ 698 'filepath': 'base/memory/memory_|' \
684 'content/browser/memory/|' \ 699 'content/browser/memory/|' \
685 'content/child/memory/' 700 'content/child/memory/'
686 }, 701 },
687 'message_loop': { 702 'message_loop': {
688 'filepath': 'base/message_' 703 'filepath': 'base/message_'
689 }, 704 },
690 'metrics': { 705 'metrics': {
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 }, 916 },
902 'precache': { 917 'precache': {
903 'filepath': '[pP]recache' 918 'filepath': '[pP]recache'
904 }, 919 },
905 'prepopulated_engines': { 920 'prepopulated_engines': {
906 'filepath': 'components/search_engines/prepopulated_engines.json', 921 'filepath': 'components/search_engines/prepopulated_engines.json',
907 }, 922 },
908 'prerender': { 923 'prerender': {
909 'filepath': 'prerender' 924 'filepath': 'prerender'
910 }, 925 },
926 'presentation': {
927 'filepath': 'content/(browser|common|renderer)/presentation/' \
928 '|third_party/WebKit/public/platform/modules/presentation/' \
929 '|third_party/WebKit/LayoutTests/presentation/' \
930 '|third_party/WebKit/Source/modules/presentation/'
931 },
911 'push_messaging': { 932 'push_messaging': {
912 'filepath': 'push_messaging' 933 'filepath': 'push_messaging'
913 }, 934 },
914 'reading_list': { 935 'reading_list': {
915 'filepath': 'components/reading_list|'\ 936 'filepath': 'components/reading_list|'\
916 'ios/chrome/browser/reading_list|'\ 937 'ios/chrome/browser/reading_list|'\
917 'ios/chrome/browser/ui/reading_list', 938 'ios/chrome/browser/ui/reading_list',
918 }, 939 },
919 'remoting': { 940 'remoting': {
920 'filepath': '^remoting/' \ 941 'filepath': '^remoting/' \
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
1852 'msramek+watch@chromium.org'], 1873 'msramek+watch@chromium.org'],
1853 'bubble': ['hcarmona+bubble@chromium.org', 1874 'bubble': ['hcarmona+bubble@chromium.org',
1854 'groby+bubble@chromium.org', 1875 'groby+bubble@chromium.org',
1855 'rouslan+bubble@chromium.org'], 1876 'rouslan+bubble@chromium.org'],
1856 'cache_storage': ['jkarlin+watch@chromium.org', 1877 'cache_storage': ['jkarlin+watch@chromium.org',
1857 'nhiroki@chromium.org'], 1878 'nhiroki@chromium.org'],
1858 'cast': ['avayvod+watch@chromium.org', 1879 'cast': ['avayvod+watch@chromium.org',
1859 'imcheng+watch@chromium.org', 1880 'imcheng+watch@chromium.org',
1860 'isheriff+watch@chromium.org', 1881 'isheriff+watch@chromium.org',
1861 'jasonroberts+watch@google.com', 1882 'jasonroberts+watch@google.com',
1883 'mfoltz+watch@chromium.org',
1862 'miu+watch@chromium.org', 1884 'miu+watch@chromium.org',
1863 'xjz+watch@chromium.org'], 1885 'xjz+watch@chromium.org'],
1864 'cast_certificate': ['dougsteed+watch@chromium.org', 1886 'cast_certificate': ['dougsteed+watch@chromium.org',
1887 'mfoltz+watch@chromium.org',
1865 'ryanchung+watch@chromium.org'], 1888 'ryanchung+watch@chromium.org'],
1889 'cast_channel': ['mfoltz+watch@chromium.org'],
1866 'cc': ['cc-bugs@chromium.org'], 1890 'cc': ['cc-bugs@chromium.org'],
1867 'certificate_transparency': ['certificate-transparency-chrome@googlegroups.c om', 1891 'certificate_transparency': ['certificate-transparency-chrome@googlegroups.c om',
1868 'eranm@chromium.org', 1892 'eranm@chromium.org',
1869 'martijn+crwatch@martijnc.be', 1893 'martijn+crwatch@martijnc.be',
1870 'rsleevi+watch@chromium.org'], 1894 'rsleevi+watch@chromium.org'],
1871 'chrome_elf': ['caitkp+watch@chromium.org', 1895 'chrome_elf': ['caitkp+watch@chromium.org',
1872 'pennymac+watch@chromium.org'], 1896 'pennymac+watch@chromium.org'],
1873 'chrome_grc': ['chrome-grc-reviews@chromium.org'], 1897 'chrome_grc': ['chrome-grc-reviews@chromium.org'],
1874 'chrome_views': ['tfarina@chromium.org'], 1898 'chrome_views': ['tfarina@chromium.org'],
1875 'chromecast': ['alokp+watch@chromium.org', 1899 'chromecast': ['alokp+watch@chromium.org',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1934 'data_reduction_proxy': ['tbansal+watch-data-reduction-proxy@chromium.org'], 1958 'data_reduction_proxy': ['tbansal+watch-data-reduction-proxy@chromium.org'],
1935 'deep_memory_profiler': ['dmikurube@chromium.org'], 1959 'deep_memory_profiler': ['dmikurube@chromium.org'],
1936 'device_bluetooth': ['ortuno+watch@chromium.org', 1960 'device_bluetooth': ['ortuno+watch@chromium.org',
1937 'scheib+watch@chromium.org'], 1961 'scheib+watch@chromium.org'],
1938 'device_sensors': ['mlamouri+watch-sensors@chromium.org', 1962 'device_sensors': ['mlamouri+watch-sensors@chromium.org',
1939 'rijubrata.bhaumik@intel.com', 1963 'rijubrata.bhaumik@intel.com',
1940 'timvolodine@chromium.org'], 1964 'timvolodine@chromium.org'],
1941 'developer_recommended_flags': ['scheib+watch@chromium.org'], 1965 'developer_recommended_flags': ['scheib+watch@chromium.org'],
1942 'devtools': ['devtools-reviews@chromium.org', 1966 'devtools': ['devtools-reviews@chromium.org',
1943 'pfeldman@chromium.org'], 1967 'pfeldman@chromium.org'],
1968 'dial': ['mfoltz+watch@chromium.org'],
Wez 2017/05/02 23:50:59 nit: Add Bin here, since she is working on DIAL?
mark a. foltz 2017/05/03 06:01:08 Done.
1944 'disk_cache': ['gavinp+disk@chromium.org'], 1969 'disk_cache': ['gavinp+disk@chromium.org'],
1945 'download': ['dtrainor@chromium.org'], 1970 'download': ['dtrainor@chromium.org'],
1946 'downloads_ui': ['dtrainor@chromium.org', 1971 'downloads_ui': ['dtrainor@chromium.org',
1947 'dbeam+watch-downloads@chromium.org'], 1972 'dbeam+watch-downloads@chromium.org'],
1948 'drive': ['tfarina@chromium.org'], 1973 'drive': ['tfarina@chromium.org'],
1949 'drive_resource_metadata': ['hashimoto+watch@chromium.org'], 1974 'drive_resource_metadata': ['hashimoto+watch@chromium.org'],
1950 'eme': ['eme-reviews@chromium.org'], 1975 'eme': ['eme-reviews@chromium.org'],
1951 'extension': ['chromium-apps-reviews@chromium.org', 1976 'extension': ['chromium-apps-reviews@chromium.org',
1952 'extensions-reviews@chromium.org'], 1977 'extensions-reviews@chromium.org'],
1953 'feature_policy': ['lunalu@chromium.org', 1978 'feature_policy': ['lunalu@chromium.org',
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
2042 'media': ['feature-media-reviews@chromium.org'], 2067 'media': ['feature-media-reviews@chromium.org'],
2043 'media_capture_from_element': ['emircan+watch+capturefromdom@chromium.org', 2068 'media_capture_from_element': ['emircan+watch+capturefromdom@chromium.org',
2044 'mcasas+capturefromelement@chromium.org'], 2069 'mcasas+capturefromelement@chromium.org'],
2045 'media_galleries': ['thestig@chromium.org', 2070 'media_galleries': ['thestig@chromium.org',
2046 'tommycli@chromium.org'], 2071 'tommycli@chromium.org'],
2047 'media_mojo': ['alokp+watch@chromium.org'], 2072 'media_mojo': ['alokp+watch@chromium.org'],
2048 'media_recorder': ['emircan+watch+mediarecorder@chromium.org', 2073 'media_recorder': ['emircan+watch+mediarecorder@chromium.org',
2049 'mcasas+mediarecorder@chromium.org'], 2074 'mcasas+mediarecorder@chromium.org'],
2050 'media_remoting': ['apacible+watch@chromium.org', 2075 'media_remoting': ['apacible+watch@chromium.org',
2051 'erickung+watch@chromium.org', 2076 'erickung+watch@chromium.org',
2077 'mfoltz+watch@chromium.org',
2052 'miu+watch@chromium.org', 2078 'miu+watch@chromium.org',
2053 'xjz+watch@chromium.org'], 2079 'xjz+watch@chromium.org'],
2054 'media_router': ['media-router+watch@chromium.org'], 2080 'media_router': ['mfoltz+watch@chromium.org'],
Wez 2017/05/02 23:50:59 nit: Add Derek here?
mark a. foltz 2017/05/03 06:01:08 Sure.
2055 'memory_coordinator': ['chrome-grc-reviews+memory@chromium.org'], 2081 'memory_coordinator': ['chrome-grc-reviews+memory@chromium.org'],
2056 'message_loop': ['sadrul@chromium.org'], 2082 'message_loop': ['sadrul@chromium.org'],
2057 'metrics': ['asvitkine+watch@chromium.org'], 2083 'metrics': ['asvitkine+watch@chromium.org'],
2058 'metrics_xml_files': ['asvitkine+watch@chromium.org'], 2084 'metrics_xml_files': ['asvitkine+watch@chromium.org'],
2059 'midi': ['toyoshim+midi@chromium.org'], 2085 'midi': ['toyoshim+midi@chromium.org'],
2060 'mojo': ['aa@chromium.org', 2086 'mojo': ['aa@chromium.org',
2061 'abarth@chromium.org', 2087 'abarth@chromium.org',
2062 'darin@chromium.org', 2088 'darin@chromium.org',
2063 'qsr+mojo@chromium.org', 2089 'qsr+mojo@chromium.org',
2064 'viettrungluu+watch@chromium.org', 2090 'viettrungluu+watch@chromium.org',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
2131 'permissions': ['mlamouri+watch-permissions@chromium.org', 2157 'permissions': ['mlamouri+watch-permissions@chromium.org',
2132 'raymes+watch@chromium.org'], 2158 'raymes+watch@chromium.org'],
2133 'plugin': ['jam@chromium.org'], 2159 'plugin': ['jam@chromium.org'],
2134 'polymer': ['dbeam+watch-polymer@chromium.org', 2160 'polymer': ['dbeam+watch-polymer@chromium.org',
2135 'michaelpg+watch-polymer@chromium.org'], 2161 'michaelpg+watch-polymer@chromium.org'],
2136 'precache': ['wifiprefetch-reviews@google.com'], 2162 'precache': ['wifiprefetch-reviews@google.com'],
2137 'prepopulated_engines': ['vasilii+watch@chromium.org'], 2163 'prepopulated_engines': ['vasilii+watch@chromium.org'],
2138 'prerender': ['cbentzel+watch@chromium.org', 2164 'prerender': ['cbentzel+watch@chromium.org',
2139 'gavinp+prer@chromium.org', 2165 'gavinp+prer@chromium.org',
2140 'tburkard+watch@chromium.org'], 2166 'tburkard+watch@chromium.org'],
2167 'presentation': ['mfoltz+watch@chromium.org'],
2141 'push_messaging': ['harkness+watch@chromium.org', 2168 'push_messaging': ['harkness+watch@chromium.org',
2142 'johnme+watch@chromium.org', 2169 'johnme+watch@chromium.org',
2143 'peter@chromium.org'], 2170 'peter@chromium.org'],
2144 'reading_list': ['stkhapugin@chromium.org'], 2171 'reading_list': ['stkhapugin@chromium.org'],
2145 'remoting': ['chromoting-reviews@chromium.org'], 2172 'remoting': ['chromoting-reviews@chromium.org'],
2146 'rlz_id': ['alito+watch@chromium.org', 2173 'rlz_id': ['alito+watch@chromium.org',
2147 'gab+watch@chromium.org', 2174 'gab+watch@chromium.org',
2148 'robertshield+watch@chromium.org'], 2175 'robertshield+watch@chromium.org'],
2149 'safe_browsing': ['grt+watch@chromium.org', 2176 'safe_browsing': ['grt+watch@chromium.org',
2150 'timvolodine@chromium.org', 2177 'timvolodine@chromium.org',
(...skipping 27 matching lines...) Expand all
2178 'supervised_users': ['pam+watch@chromium.org'], 2205 'supervised_users': ['pam+watch@chromium.org'],
2179 'swreporter': ['alito+watch@chromium.org', 2206 'swreporter': ['alito+watch@chromium.org',
2180 'csharp+watch@chromium.org', 2207 'csharp+watch@chromium.org',
2181 'ftirelo+watch@chromium.org', 2208 'ftirelo+watch@chromium.org',
2182 'joenotcharles+watch@chromium.org'], 2209 'joenotcharles+watch@chromium.org'],
2183 'sync': ['sync-reviews@chromium.org'], 2210 'sync': ['sync-reviews@chromium.org'],
2184 'syncfs': ['kinuko+fileapi@chromium.org', 2211 'syncfs': ['kinuko+fileapi@chromium.org',
2185 'nhiroki@chromium.org', 2212 'nhiroki@chromium.org',
2186 'tzik@chromium.org'], 2213 'tzik@chromium.org'],
2187 'tab_alert_indicators': ['miu+watch@chromium.org'], 2214 'tab_alert_indicators': ['miu+watch@chromium.org'],
2188 'tab_capture': ['miu+watch@chromium.org', 2215 'tab_capture': ['mfoltz+watch@chromium.org',
2216 'miu+watch@chromium.org',
2189 'xjz+watch@chromium.org'], 2217 'xjz+watch@chromium.org'],
2190 'tab_contents': ['ajwong+watch@chromium.org', 2218 'tab_contents': ['ajwong+watch@chromium.org',
2191 'avi@chromium.org', 2219 'avi@chromium.org',
2192 'creis+watch@chromium.org'], 2220 'creis+watch@chromium.org'],
2193 'tbmv2_metrics': ['speed-metrics-reviews@chromium.org'], 2221 'tbmv2_metrics': ['speed-metrics-reviews@chromium.org'],
2194 'tcmalloc': ['dmikurube@chromium.org'], 2222 'tcmalloc': ['dmikurube@chromium.org'],
2195 'telemetry': ['telemetry-reviews@chromium.org'], 2223 'telemetry': ['telemetry-reviews@chromium.org'],
2196 'test_runner': ['jochen+watch@chromium.org', 2224 'test_runner': ['jochen+watch@chromium.org',
2197 'mlamouri+watch-test-runner@chromium.org', 2225 'mlamouri+watch-test-runner@chromium.org',
2198 'einbinder+watch-test-runner@chromium.org'], 2226 'einbinder+watch-test-runner@chromium.org'],
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
2235 'msramek+watch@chromium.org', 2263 'msramek+watch@chromium.org',
2236 'raymes+watch@chromium.org'], 2264 'raymes+watch@chromium.org'],
2237 'windows_sandboxing': ['pennymac+watch@chromium.org', 2265 'windows_sandboxing': ['pennymac+watch@chromium.org',
2238 'wfh+watch@chromium.org'], 2266 'wfh+watch@chromium.org'],
2239 'x11': ['derat+watch@chromium.org', 2267 'x11': ['derat+watch@chromium.org',
2240 'sadrul@chromium.org', 2268 'sadrul@chromium.org',
2241 'yusukes+watch@chromium.org'], 2269 'yusukes+watch@chromium.org'],
2242 'zoom': ['wjmaclean@chromium.org'], 2270 'zoom': ['wjmaclean@chromium.org'],
2243 }, 2271 },
2244 } 2272 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698