| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 cr.exportPath('settings'); | 5 cr.exportPath('settings'); |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * The state of sync. This is the data structure sent back and forth between | 8 * The state of sync. This is the data structure sent back and forth between |
| 9 * C++ and JS. Its naming and structure is not optimal, but changing it would | 9 * C++ and JS. Its naming and structure is not optimal, but changing it would |
| 10 * require changes to the C++ handler, which is already functional. | 10 * require changes to the C++ handler, which is already functional. |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 break; | 231 break; |
| 232 default: | 232 default: |
| 233 // Other statuses (i.e. "spinner") are ignored. | 233 // Other statuses (i.e. "spinner") are ignored. |
| 234 } | 234 } |
| 235 }; | 235 }; |
| 236 | 236 |
| 237 return { | 237 return { |
| 238 SyncPrivateApi: SyncPrivateApi, | 238 SyncPrivateApi: SyncPrivateApi, |
| 239 }; | 239 }; |
| 240 }); | 240 }); |
| OLD | NEW |