Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: examples/window_manager/debug_panel.sky

Issue 874303003: Move sky-box,-button,-checkbox,-radio out of their directories (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « examples/browser/browser.sky ('k') | examples/wm_flow/wm/window_frame.sky » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/public/interfaces/navigation.mojom.sky" a s="navigation" />
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" />
14 <import src="/sky/framework/sky-button.sky" as="SkyButton" />
15 <import src="/sky/framework/sky-checkbox.sky" as="SkyCheckbox" />
13 <import src="/sky/framework/sky-element/sky-element.sky" as="SkyElement" /> 16 <import src="/sky/framework/sky-element/sky-element.sky" as="SkyElement" />
14 <import src="/sky/framework/sky-button/sky-button.sky" as="SkyButton" /> 17 <import src="/sky/framework/sky-radio.sky" as="SkyRadio" />
15 <import src="/sky/framework/sky-box/sky-box.sky" as="SkyBox" />
16 <import src="/sky/framework/sky-checkbox/sky-checkbox.sky" as="SkyCheckbox" />
17 <import src="/sky/framework/sky-radio/sky-radio.sky" as="SkyRadio" />
18 18
19 <sky-element name="debug-panel"> 19 <sky-element name="debug-panel">
20 <template> 20 <template>
21 <style> 21 <style>
22 div { display: paragraph; } 22 div { display: paragraph; }
23 </style> 23 </style>
24 24
25 <sky-box title='Navigation target:'> 25 <sky-box title='Navigation target:'>
26 <div><sky-radio group='nav-target' selected='true' 26 <div><sky-radio group='nav-target' selected='true'
27 on-click="handleRadioDefault"/>Default</div> 27 on-click="handleRadioDefault"/>Default</div>
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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>
OLDNEW
« no previous file with comments | « examples/browser/browser.sky ('k') | examples/wm_flow/wm/window_frame.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698