| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 5 |
| 6 cr.define('mobile', function() { | 6 cr.define('mobile', function() { |
| 7 | 7 |
| 8 function MobileSetup() { | 8 function MobileSetup() { |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 mobile.MobileSetup.ACTIVATION_PAGE_URL); | 348 mobile.MobileSetup.ACTIVATION_PAGE_URL); |
| 349 }; | 349 }; |
| 350 | 350 |
| 351 // Export | 351 // Export |
| 352 return { | 352 return { |
| 353 MobileSetup: MobileSetup | 353 MobileSetup: MobileSetup |
| 354 }; | 354 }; |
| 355 | 355 |
| 356 }); | 356 }); |
| 357 | 357 |
| OLD | NEW |