OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 } | 766 } |
767 | 767 |
768 /** | 768 /** |
769 * @return {!Promise.<undefined>} | 769 * @return {!Promise.<undefined>} |
770 */ | 770 */ |
771 _loadScripts() { | 771 _loadScripts() { |
772 if (!this._descriptor.scripts || !this._descriptor.scripts.length) | 772 if (!this._descriptor.scripts || !this._descriptor.scripts.length) |
773 return Promise.resolve(); | 773 return Promise.resolve(); |
774 | 774 |
775 // the namespace keyword confuses clang-format | 775 // the namespace keyword confuses clang-format |
| 776 // NOTE: Update scripts/special_case_namespaces.json if you add a special ca
sed namespace |
776 // clang-format off | 777 // clang-format off |
777 // Module namespaces. | 778 // Module namespaces. |
778 const specialCases = { | 779 const specialCases = { |
779 'sdk': 'SDK', | 780 'sdk': 'SDK', |
780 'ui': 'UI', | 781 'ui': 'UI', |
781 'perf_ui': 'PerfUI', | 782 'perf_ui': 'PerfUI', |
782 'css_tracker': 'CSSTracker', | 783 'css_tracker': 'CSSTracker', |
783 'ui_lazy': 'UI', | 784 'ui_lazy': 'UI', |
784 'components_lazy': 'Components' | 785 'components_lazy': 'Components' |
785 }; | 786 }; |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1126 send(message) {}, | 1127 send(message) {}, |
1127 | 1128 |
1128 /** | 1129 /** |
1129 * @return {!Promise<boolean>} | 1130 * @return {!Promise<boolean>} |
1130 */ | 1131 */ |
1131 close() {} | 1132 close() {} |
1132 }; | 1133 }; |
1133 | 1134 |
1134 /** @type {!Runtime} */ | 1135 /** @type {!Runtime} */ |
1135 var runtime; | 1136 var runtime; |
OLD | NEW |