| Index: chrome/common/extensions/docs/examples/extensions/buildbot/options.js
|
| diff --git a/chrome/common/extensions/docs/examples/extensions/buildbot/options.js b/chrome/common/extensions/docs/examples/extensions/buildbot/options.js
|
| index 38eeb64f6630d21508fa2d4703081b1f4b3e1098..78c2994dce009d8f4b735634204191b60a605b6b 100644
|
| --- a/chrome/common/extensions/docs/examples/extensions/buildbot/options.js
|
| +++ b/chrome/common/extensions/docs/examples/extensions/buildbot/options.js
|
| @@ -2,7 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -var prefs = new Prefs;
|
| +(function() {
|
| +
|
| +window.buildbot = window.buildbot || {};
|
| +
|
| +var prefs = new buildbot.PrefStore;
|
|
|
| // Initialize the checkbox checked state from the saved preference.
|
| function main() {
|
| @@ -24,3 +28,5 @@ function main() {
|
| }
|
|
|
| main();
|
| +
|
| +})();
|
|
|