OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 define("mojo/public/js/bindings", [ | 5 define("mojo/public/js/bindings", [ |
6 "mojo/public/js/router", | 6 "mojo/public/js/router", |
7 "mojo/public/js/core", | 7 "mojo/public/js/core", |
8 ], function(router, core) { | 8 ], function(router, core) { |
9 | 9 |
10 var Router = router.Router; | 10 var Router = router.Router; |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 | 119 |
120 var exports = {}; | 120 var exports = {}; |
121 exports.EmptyProxy = ProxyBase; | 121 exports.EmptyProxy = ProxyBase; |
122 exports.EmptyStub = StubBase; | 122 exports.EmptyStub = StubBase; |
123 exports.ProxyBase = ProxyBase; | 123 exports.ProxyBase = ProxyBase; |
124 exports.ProxyBindings = ProxyBindings; | 124 exports.ProxyBindings = ProxyBindings; |
125 exports.StubBase = StubBase; | 125 exports.StubBase = StubBase; |
126 exports.StubBindings = StubBindings; | 126 exports.StubBindings = StubBindings; |
127 return exports; | 127 return exports; |
128 }); | 128 }); |
OLD | NEW |