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

Side by Side Diff: ppapi/examples/crxfs/crxfs.html

Issue 14188019: CRX FileSystem Pepper private API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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 | « ppapi/examples/crxfs/crxfs.cc ('k') | ppapi/examples/crxfs/crxfs.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <!--
4 Copyright (c) 2013 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
7
8 This example demostrates how to access CRX file system. The plugin will
9 return the content of the given file to the page to display.
10
11 Since the API is for CRX file system, you need to package this example
12 directory into a .crx to load, or simply click "Load unpacked extension" in
13 chrome://extensions/ with "Developer mode" checked.
14 -->
15 <head>
16 <title>CrxFs Example</title>
17 <script src="crxfs.js"></script>
18 </head>
19
20 <body>
21
22 <button id="start">Open</button>
23 <input type="text" id="filename" value="/manifest.json"></input>
24 <object id="plugin" type="application/x-ppapi-example-crxfs"
25 width="1" height="1">
26 </object>
27 <br>
28 <textarea id="content" style="width: 80%; height: 300px;">
29 (output space)
30 </textarea>
31 </body>
32 </html>
OLDNEW
« no previous file with comments | « ppapi/examples/crxfs/crxfs.cc ('k') | ppapi/examples/crxfs/crxfs.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698