Add more checks to investigate SupervisedUserPrefStore crash at startup.
[chromium-blink-merge.git] / native_client_sdk / src / examples / tutorial / filesystem_passing / example.js
blob3d8b7192e98714e564eeb04bd5f0004db7e19737
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 function attachListeners() {
6   document.getElementById('choosedir').addEventListener('click', function(e) {
7     chrome.fileSystem.chooseEntry({type: 'openDirectory'}, function(entry) {
8       if (!entry) {
9         // The user cancelled the dialog.
10         return;
11       }
13       // Send the filesystem and the directory path to the NaCl module.
14       common.naclModule.postMessage({
15         filesystem: entry.filesystem,
16         fullPath: entry.fullPath
17       });
18     });
19   }, false);
22 // Called by the common.js module.
23 function moduleDidLoad() {
24   // The module is not hidden by default so we can easily see if the plugin
25   // failed to load.
26   common.hideModule();
28   // Make sure this example is running as an App. If not, display a warning.
29   if (!chrome.fileSystem) {
30     common.updateStatus('Error: must be run as an App.');
31     return;
32   }
35 // Called by the common.js module.
36 function handleMessage(message_event) {
37   common.logMessage(message_event.data);