Chromium Code Reviews| 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 onload = function() { | 5 // Provides types for testing scoped types included in idl_basics.idl. |
| 6 chrome.test.sendMessage('window_loaded'); | 6 |
| 7 namespace idl_other_namespace.sub_namespace { | |
| 8 enum AnotherType { | |
| 9 hello, | |
| 10 world | |
| 11 }; | |
| 7 }; | 12 }; |
| OLD | NEW |