diff --git a/mozilla/browser/components/search/nsSearchService.js b/mozilla/browser/components/search/nsSearchService.js index b948e055945..7b55475bd75 100755 --- a/mozilla/browser/components/search/nsSearchService.js +++ b/mozilla/browser/components/search/nsSearchService.js @@ -1843,6 +1843,12 @@ Engine.prototype = { return ""; }, + // This getter is used in SearchService.observe. It is not intended to be + // used (or needed) by callers outside this file. + get uri() { + return this._uri; + }, + // The file that the plugin is loaded from is a unique identifier for it. We // use this as the identifier to store data in the sqlite database get _id() { @@ -1876,12 +1882,6 @@ Engine.prototype = { return this._type; }, - // This getter is used in SearchService.observer. It is not intended to be - // used (or needed) by callers outside this file. - get uri() { - return this._uri; - }, - get searchForm() { if (!this._searchForm) { // No searchForm specified in the engine definition file, use the prePath