1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 cr.define('options', function() {
8 cr.addSingletonGetter(Slow);
14 Slow.initialize = function() {
15 $('slow-disable').addEventListener('click', function(event) {
16 Slow.disableTracing();
18 $('slow-enable').addEventListener('click', function(event) {
21 this.initialized_ = true;
24 Slow.disableTracing = function() {
25 chrome.send('disableTracing');
28 Slow.enableTracing = function() {
29 chrome.send('enableTracing');
32 Slow.tracingPrefChanged = function(enabled) {
33 $('slow-disable').hidden = !enabled;
34 $('slow-enable').hidden = enabled;
44 options.Slow.initialize();
45 chrome.send('loadComplete');
48 document.addEventListener('DOMContentLoaded', load);