| OLD | NEW |
| 1 # Chrome Network Bug Triage : Components and labels | 1 # Chrome Network Bug Triage : Components and labels |
| 2 | 2 |
| 3 ## Some network component caveats | 3 ## Some network component caveats |
| 4 | 4 |
| 5 * **UI>Browser>Downloads** | 5 * **UI>Browser>Downloads** |
| 6 | 6 |
| 7 Despite the name, this covers all issues related to downloading a file | 7 Despite the name, this covers all issues related to downloading a file |
| 8 except saving entire pages (which is **Blink>SavePage**), not just UI | 8 except saving entire pages (which is **Blink>SavePage**), not just UI |
| 9 issues. Most downloads bugs will have the word "download" or "save as" in | 9 issues. Most downloads bugs will have the word "download" or "save as" in |
| 10 the description. Issues with the HTTP server for the Chrome binaries are | 10 the description. Issues with the HTTP server for the Chrome binaries are |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 This includes issues that should be also tagged as **Security>UX** | 22 This includes issues that should be also tagged as **Security>UX** |
| 23 (certificate error pages or other security interstitials, omnibox indicators | 23 (certificate error pages or other security interstitials, omnibox indicators |
| 24 that a page is secure), and more general SSL issues. If you see requests | 24 that a page is secure), and more general SSL issues. If you see requests |
| 25 that die in the SSL negotiation phase, in particular, this is often the | 25 that die in the SSL negotiation phase, in particular, this is often the |
| 26 correct component. | 26 correct component. |
| 27 | 27 |
| 28 * **Internals>Network>DataProxy** | 28 * **Internals>Network>DataProxy** |
| 29 | 29 |
| 30 Flywheel / the Data Reduction Proxy. Issues require "Reduce Data Usage" be | 30 Flywheel / the Data Reduction Proxy. Issues require "Reduce Data Usage" be |
| 31 turned on. Proxy url is [https://proxy.googlezip.net:443](#), with | 31 turned on. Proxy URL is [https://proxy.googlezip.net:443](#), with |
| 32 [http://compress.googlezip.net:80](#) as a fallback. Currently Android and | 32 [http://compress.googlezip.net:80](#) as a fallback. Currently Android and |
| 33 iOS only. | 33 iOS only. |
| 34 | 34 |
| 35 * **Internals>Network>Cache** | 35 * **Internals>Network>Cache** |
| 36 | 36 |
| 37 The cache is the layer that handles most range request logic (Though range | 37 The cache is the layer that handles most range request logic (Though range |
| 38 requests may also be issued by the PDF plugin, XHRs, or other components). | 38 requests may also be issued by the PDF plugin, XHRs, or other components). |
| 39 | 39 |
| 40 * **Internals>Network>SPDY** | 40 * **Internals>Network>SPDY** |
| 41 | 41 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 118 |
| 119 Issues with network related extension APIs should have this component. | 119 Issues with network related extension APIs should have this component. |
| 120 chrome.webRequest is the big one, I believe, but there are others. | 120 chrome.webRequest is the big one, I believe, but there are others. |
| 121 | 121 |
| 122 * **Internals>Plugins>Pepper[>SDK]** | 122 * **Internals>Plugins>Pepper[>SDK]** |
| 123 | 123 |
| 124 * **UI>Browser>Omnibox** | 124 * **UI>Browser>Omnibox** |
| 125 | 125 |
| 126 Basically any issue with the omnibox. URLs being treated as search queries | 126 Basically any issue with the omnibox. URLs being treated as search queries |
| 127 rather than navigations, dropdown results being weird, not handling certain | 127 rather than navigations, dropdown results being weird, not handling certain |
| 128 unicode characters, etc. If the issue is new TLDs not being recognized by | 128 Unicode characters, etc. If the issue is new TLDs not being recognized by |
| 129 the omnibox, that's due to Chrome's TLD list being out of date, and not an | 129 the omnibox, that's due to Chrome's TLD list being out of date, and not an |
| 130 omnibox issue. Such TLD issues should be duped against | 130 omnibox issue. Such TLD issues should be duped against |
| 131 http://crbug.com/37436. | 131 http://crbug.com/37436. |
| 132 | 132 |
| 133 * **Internals>Media>Network** | 133 * **Internals>Media>Network** |
| 134 | 134 |
| 135 Issues related to media. These often run into the 6 requests per hostname | 135 Issues related to media. These often run into the 6 requests per hostname |
| 136 issue, and also have fun interactions with the cache, particularly in the | 136 issue, and also have fun interactions with the cache, particularly in the |
| 137 range request case. | 137 range request case. |
| 138 | 138 |
| 139 * **Internals>Plugins>PDF** | 139 * **Internals>Plugins>PDF** |
| 140 | 140 |
| 141 Issues loading pdf files. These are often related to range requests, which | 141 Issues loading PDF files. These are often related to range requests, which |
| 142 also have some logic at the Internals>Network>Cache layer. | 142 also have some logic at the Internals>Network>Cache layer. |
| 143 | 143 |
| 144 * **UI>Browser>Navigation** | 144 * **UI>Browser>Navigation** |
| 145 | 145 |
| 146 * **UI>Browser>History** | 146 * **UI>Browser>History** |
| 147 | 147 |
| 148 Issues which only appear with forward/back navigation. | 148 Issues which only appear with forward/back navigation. |
| 149 | 149 |
| 150 * **OS>Systems>Network** / **OS>Systems>Mobile** / **OS>Systems>Bluetooth** | 150 * **OS>Systems>Network** / **OS>Systems>Mobile** / **OS>Systems>Bluetooth** |
| 151 | 151 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 164 beyond the lifetime of incognito tabs, etc). Generally used in conjunction | 164 beyond the lifetime of incognito tabs, etc). Generally used in conjunction |
| 165 with other components. | 165 with other components. |
| 166 | 166 |
| 167 ## Common labels | 167 ## Common labels |
| 168 | 168 |
| 169 * **Type-Bug-Security** | 169 * **Type-Bug-Security** |
| 170 | 170 |
| 171 Security related bug (Allows for code execution from remote site, allows | 171 Security related bug (Allows for code execution from remote site, allows |
| 172 crossing security boundaries, unchecked array bounds, etc) should be tagged | 172 crossing security boundaries, unchecked array bounds, etc) should be tagged |
| 173 with this label. | 173 with this label. |
| OLD | NEW |