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

Side by Side Diff: native_client_sdk/src/examples/api/vpn_provider/index.html

Issue 1731273002: ppapi: PPB_VpnProvider: Add a simple NaCl SDK example. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@vpn-ppapi
Patch Set: Respond to reviews. Created 4 years, 5 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <!--
4 Copyright 2016 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 <head>
9 <meta http-equiv="Pragma" content="no-cache">
10 <meta http-equiv="Expires" content="-1">
11 <title>{{title}}</title>
12 <script type="text/javascript" src="common.js"></script>
13 <script type="text/javascript" src="example.js"></script>
14 </head>
15
16 <body {{attrs}}>
17 <h1>{{title}}</h1>
18 <h2>Status: <code id="statusField">NO-STATUS</code></h2>
19 <p>The VpnProvider example demonstrates how to use the VpnProvider API.<br/>
20 <i>This NaCl SDK example can only be used as an extension on Chrome OS.</i>
21 <br/>See the README file for detailed information on build and deploy.
22 </p>
23 <h3>Test</h3>
24 <p>After loading the extension to a Chromebook, open the 'VPN Provider' app.
25 <br/>Wait for the connection to be created.<br/> From the network
26 configuration menu select the 'Mock configuration' entry. <br/>
27 Observe the connection setup flow below.
28
29 </p>
30 <div id="listener"></div>
31 <div id="log" style="height: 400px; overflow-y: scroll;"></div>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698