| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // require: cr.js | 5 // require: cr.js |
| 6 | 6 |
| 7 cr.define('chrome.sync', function() { | 7 cr.define('chrome.sync', function() { |
| 8 var currSearchId = 0; | 8 var currSearchId = 0; |
| 9 | 9 |
| 10 var setQueryString = function(queryControl, query) { | 10 var setQueryString = function(queryControl, query) { |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 detailsControl.textContent = JSON.stringify(selected, null, 2); | 133 detailsControl.textContent = JSON.stringify(selected, null, 2); |
| 134 } | 134 } |
| 135 }); | 135 }); |
| 136 } | 136 } |
| 137 | 137 |
| 138 return { | 138 return { |
| 139 decorateSearchControls: decorateSearchControls, | 139 decorateSearchControls: decorateSearchControls, |
| 140 decorateQuickQueryControls: decorateQuickQueryControls | 140 decorateQuickQueryControls: decorateQuickQueryControls |
| 141 }; | 141 }; |
| 142 }); | 142 }); |
| OLD | NEW |