Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/test/unit/mock_settings_listener.js
blob: 6a4da7fcfba300e1205abe4af5c6e8c635ab8377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var MockSettingsListener = {
  observe: function msl_observe(name, defaultValue, cb) {
    this.mName = name;
    this.mDefaultValue = defaultValue;
    this.mCallback = cb;
  },

  mName: null,
  mDefaultValue: null,
  mCallback: null,
  mTeardown: function teardown() {
    this.mName = null;
    this.mDefaultValue = null;
    this.mDefaultCallback = null;
  }
};