Bug 1207490 - Part 9: Remove use of expression closure from browser/modules/BrowserUITelemetry.jsm. r=Gijs

--HG--
extra : commitid : CFzcxrBPH1X
extra : rebase_source : 099f29f23f6cb30df15cf5edd5328883ce6d72cf
This commit is contained in:
Tooru Fujisawa 2015-09-21 02:32:16 +09:00
Родитель 0059c5fb26
Коммит a03be9066b
1 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -713,18 +713,24 @@ this.BrowserUITelemetry = {
/**
* Default bucket name, when no other bucket is active.
*/
get BUCKET_DEFAULT() BUCKET_DEFAULT,
get BUCKET_DEFAULT() {
return BUCKET_DEFAULT;
},
/**
* Bucket prefix, for named buckets.
*/
get BUCKET_PREFIX() BUCKET_PREFIX,
get BUCKET_PREFIX() {
return BUCKET_PREFIX;
},
/**
* Standard separator to use between different parts of a bucket name, such
* as primary name and the time step string.
*/
get BUCKET_SEPARATOR() BUCKET_SEPARATOR,
get BUCKET_SEPARATOR() {
return BUCKET_SEPARATOR;
},
get currentBucket() {
return this._bucket;