| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 break; | 233 break; |
| 234 default: | 234 default: |
| 235 // Other statuses (i.e. "spinner") are ignored. | 235 // Other statuses (i.e. "spinner") are ignored. |
| 236 } | 236 } |
| 237 }; | 237 }; |
| 238 | 238 |
| 239 return { | 239 return { |
| 240 SyncPrivateApi: SyncPrivateApi, | 240 SyncPrivateApi: SyncPrivateApi, |
| 241 }; | 241 }; |
| 242 }); | 242 }); |
| OLD | NEW |