OLD | NEW |
1 #!mojo mojo:sky_viewer | 1 #!mojo mojo:sky_viewer |
2 <!-- | 2 <!-- |
3 // Copyright 2014 The Chromium Authors. All rights reserved. | 3 // Copyright 2014 The Chromium Authors. All rights reserved. |
4 // Use of this source code is governed by a BSD-style license that can be | 4 // Use of this source code is governed by a BSD-style license that can be |
5 // found in the LICENSE file. | 5 // found in the LICENSE file. |
6 --> | 6 --> |
7 <sky> | 7 <sky> |
8 | 8 |
9 <import src="/gen/examples/window_manager/debug_panel_host.mojom.sky" as="exampl
e" /> | 9 <import src="/gen/examples/window_manager/debug_panel_host.mojom.sky" as="exampl
e" /> |
10 <import src="/mojo/services/navigation/public/interfaces/navigation.mojom.sky" a
s="navigation" /> | 10 <import src="/mojo/services/navigation/interfaces/navigation.mojom.sky" as="navi
gation" /> |
11 | 11 |
12 <import src="/sky/framework/embedder.sky" as="embedder" /> | 12 <import src="/sky/framework/embedder.sky" as="embedder" /> |
13 <import src="/sky/framework/sky-box.sky" as="SkyBox" /> | 13 <import src="/sky/framework/sky-box.sky" as="SkyBox" /> |
14 <import src="/sky/framework/sky-button.sky" as="SkyButton" /> | 14 <import src="/sky/framework/sky-button.sky" as="SkyButton" /> |
15 <import src="/sky/framework/sky-checkbox.sky" as="SkyCheckbox" /> | 15 <import src="/sky/framework/sky-checkbox.sky" as="SkyCheckbox" /> |
16 <import src="/sky/framework/sky-element/sky-element.sky" as="SkyElement" /> | 16 <import src="/sky/framework/sky-element/sky-element.sky" as="SkyElement" /> |
17 <import src="/sky/framework/sky-radio.sky" as="SkyRadio" /> | 17 <import src="/sky/framework/sky-radio.sky" as="SkyRadio" /> |
18 | 18 |
19 <sky-element name="debug-panel"> | 19 <sky-element name="debug-panel"> |
20 <template> | 20 <template> |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 61 |
62 handleCrossAppNavTest(event) { | 62 handleCrossAppNavTest(event) { |
63 this.embedder.navigateTo("http://www.aaronboodman.com/z_dropbox/test.html"); | 63 this.embedder.navigateTo("http://www.aaronboodman.com/z_dropbox/test.html"); |
64 } | 64 } |
65 }.register(); | 65 }.register(); |
66 </script> | 66 </script> |
67 </sky-element> | 67 </sky-element> |
68 | 68 |
69 <debug-panel /> | 69 <debug-panel /> |
70 </sky> | 70 </sky> |
OLD | NEW |