Index: ppapi/examples/pluginfs/pluginfs.html |
diff --git a/ppapi/examples/crxfs/crxfs.html b/ppapi/examples/pluginfs/pluginfs.html |
similarity index 50% |
copy from ppapi/examples/crxfs/crxfs.html |
copy to ppapi/examples/pluginfs/pluginfs.html |
index 05c66a7ff76791c747c750b380409e6c9a60b8d9..96fca22e285478ca64126798c8e9a9927bb2ee0c 100644 |
--- a/ppapi/examples/crxfs/crxfs.html |
+++ b/ppapi/examples/pluginfs/pluginfs.html |
@@ -5,23 +5,18 @@ |
Use of this source code is governed by a BSD-style license that can be |
found in the LICENSE file. |
- This example demostrates how to access CRX file system. The plugin will |
- return the content of the given file to the page to display. |
- |
- Since the API is for CRX file system, you need to package this example |
- directory into a .crx to load, or simply click "Load unpacked extension" in |
- chrome://extensions/ with "Developer mode" checked. |
+ This example demostrates how to access PluginPrivate file system. |
--> |
<head> |
- <title>CrxFs Example</title> |
- <script src="crxfs.js"></script> |
+ <title>PluginPrivate FileSystem Example</title> |
+ <script src="pluginfs.js"></script> |
</head> |
<body> |
<button id="start">Open</button> |
<input type="text" id="filename" value="/manifest.json"></input> |
- <object id="plugin" type="application/x-ppapi-example-crxfs" |
+ <object id="plugin" type="application/x-ppapi-example-pluginfs" |
width="1" height="1"> |
</object> |
<br> |