126
edits
(Update the project docs) |
(fix typo) |
||
| Line 50: | Line 50: | ||
* [https://dxr.mozilla.org/mozilla-central/source/browser/base/content/urlbarBindings.xml#1158 urlbarBindings.xml] (just the rich result popup) | * [https://dxr.mozilla.org/mozilla-central/source/browser/base/content/urlbarBindings.xml#1158 urlbarBindings.xml] (just the rich result popup) | ||
* [https://dxr.mozilla.org/mozilla-central/source/toolkit/components/places/UnifiedComplete.js UnifiedComplete.js] | * [https://dxr.mozilla.org/mozilla-central/source/toolkit/components/places/UnifiedComplete.js UnifiedComplete.js] | ||
* | * [https://dxr.mozilla.org/mozilla-central/source/toolkit/components/autocomplete/nsAutoCompleteController.cpp nsAutoCompleteController.cpp] | ||
** Note that this controller is a UI controller written in C++. Our JS prototypes can't easily override this code, or get access to private members, so changing code in this file requires reimplementing in JS. Just another odd constraint to be aware of. | ** Note that this controller is a UI controller written in C++. Our JS prototypes can't easily override this code, or get access to private members, so changing code in this file requires reimplementing in JS. Just another odd constraint to be aware of. | ||
Reading this code will lead to older service and IDL definitions, most of which are in the [https://dxr.mozilla.org/mozilla-central/source/toolkit/components/autocomplete toolkit/components/autocomplete] (autocomplete code and places search) and [https://dxr.mozilla.org/mozilla-central/source/toolkit/components/search toolkit/components/search] (search suggestions) modules. | Reading this code will lead to older service and IDL definitions, most of which are in the [https://dxr.mozilla.org/mozilla-central/source/toolkit/components/autocomplete toolkit/components/autocomplete] (autocomplete code and places search) and [https://dxr.mozilla.org/mozilla-central/source/toolkit/components/search toolkit/components/search] (search suggestions) modules. | ||
edits