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

Unified Diff: native_client_sdk/src/examples/demo/drive/example.js

Issue 14500010: [NaCl SDK] Google Drive example (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove key from build_app generated manifest 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 side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/examples/demo/drive/example.js
diff --git a/native_client_sdk/src/examples/demo/drive/example.js b/native_client_sdk/src/examples/demo/drive/example.js
new file mode 100644
index 0000000000000000000000000000000000000000..ce4279be2373f1eac12cc6aacb2717aa234cd2f0
--- /dev/null
+++ b/native_client_sdk/src/examples/demo/drive/example.js
@@ -0,0 +1,70 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+"use strict";
+
+var authToken = '';
+
+function getAuthToken(interactive) {
+ chrome.experimental.identity.getAuthToken(
+ {'interactive': interactive}, onGetAuthToken);
+}
+
+function onGetAuthToken(authToken) {
+ var signInEl = document.getElementById('signIn');
+ var getFileEl = document.getElementById('getFile');
+ if (authToken) {
+ signInEl.setAttribute('hidden');
+ getFileEl.removeAttribute('hidden');
+ window.authToken = authToken;
+
+ // Send the auth token to the NaCl module.
+ common.naclModule.postMessage('token:'+authToken);
+ } else {
+ // There is no auth token; this means that the user has yet to authorize
+ // this app. Display a button to let the user sign in and authorize this
+ // application.
+ signInEl.removeAttribute('hidden');
+ getFileEl.setAttribute('hidden');
+ }
+};
+
+// Called by the common.js module.
+function moduleDidLoad() {
+ // The module is not hidden by default so we can easily see if the plugin
+ // failed to load.
+ common.hideModule();
+
+ // Make sure this example is running as a packaged app. If not, display a
+ // warning.
+ if (!chrome.experimental) {
+ common.updateStatus('Error: must be run as a packged app.');
+ return;
+ }
+
+ // Try to get the authorization token non-interactively. This will often work
+ // if the user has already authorized the app, and the token is cached.
+ getAuthToken(false);
+}
+
+function handleMessage(e) {
+ var msg = e.data;
+ document.getElementById('contents').textContent = msg;
+}
+
+// Called by the common.js module.
+function attachListeners() {
+ document.getElementById('signIn').addEventListener('click', function () {
+ // Get the authorization token interactively. A dialog box will pop up
+ // asking the user to authorize access to their Drive account.
+ getAuthToken(true);
+ });
+
+ document.getElementById('getFile').addEventListener('click', function () {
+ // Clear the file contents dialog box.
+ document.getElementById('contents').textContent = '';
+
+ common.naclModule.postMessage('getFile');
+ });
+}
« no previous file with comments | « native_client_sdk/src/examples/demo/drive/example.dsc ('k') | native_client_sdk/src/examples/demo/drive/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698