| 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 : Despite the name, this covers all issues related to downloading a file except | 6 : Despite the name, this covers all issues related to downloading a file except |
| 7 saving entire pages (which is **Blink>SavePage**), not just UI issues. | 7 saving entire pages (which is **Blink>SavePage**), not just UI issues. |
| 8 Most downloads bugs will have the word "download" or "save as" in the | 8 Most downloads bugs will have the word "download" or "save as" in the |
| 9 description. Issues with the HTTP server for the Chrome binaries are not | 9 description. Issues with the HTTP server for the Chrome binaries are not |
| 10 downloads bugs. | 10 downloads bugs. |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 **Blink>Network>FetchAPI** | 78 **Blink>Network>FetchAPI** |
| 79 : Generic issues with the Fetch API - missing request or response | 79 : Generic issues with the Fetch API - missing request or response |
| 80 headers, multiple headers, etc. These will often run into issues in certain | 80 headers, multiple headers, etc. These will often run into issues in certain |
| 81 corner cases (Cross origin / CORS, proxy, whatever). Attach all components th
at | 81 corner cases (Cross origin / CORS, proxy, whatever). Attach all components th
at |
| 82 seem appropriate. | 82 seem appropriate. |
| 83 | 83 |
| 84 **Blink>Network>XHR** | 84 **Blink>Network>XHR** |
| 85 : Generic issues with sync/async XHR requests. | 85 : Generic issues with sync/async XHR requests. |
| 86 | 86 |
| 87 **Blink>WebRTC>Network** |
| 88 : Anything WebRTC-related does not use the net stack and should go here. |
| 89 |
| 87 **Services>Sync** | 90 **Services>Sync** |
| 88 : Sharing data/tabs/history/passwords/etc between machines not working. | 91 : Sharing data/tabs/history/passwords/etc between machines not working. |
| 89 | 92 |
| 90 **Services>Chromoting** | 93 **Services>Chromoting** |
| 91 | 94 |
| 92 **Platform>Extensions** | 95 **Platform>Extensions** |
| 93 : Issues extensions loading / not loading / hanging. | 96 : Issues extensions loading / not loading / hanging. |
| 94 | 97 |
| 95 **Platform>Extensions>API** | 98 **Platform>Extensions>API** |
| 96 : Issues with network related extension APIs should have this component. | 99 : Issues with network related extension APIs should have this component. |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 shouldn't be able to do so, incognito state being saved in memory or on disk | 136 shouldn't be able to do so, incognito state being saved in memory or on disk |
| 134 beyond the lifetime of incognito tabs, etc). Generally used in conjunction | 137 beyond the lifetime of incognito tabs, etc). Generally used in conjunction |
| 135 with other components. | 138 with other components. |
| 136 | 139 |
| 137 ## Common labels | 140 ## Common labels |
| 138 | 141 |
| 139 **Type-Bug-Security** | 142 **Type-Bug-Security** |
| 140 : Security related bug (Allows for code execution from remote site, allows | 143 : Security related bug (Allows for code execution from remote site, allows |
| 141 crossing security boundaries, unchecked array bounds, etc) should be tagged | 144 crossing security boundaries, unchecked array bounds, etc) should be tagged |
| 142 with this label. | 145 with this label. |
| OLD | NEW |