summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/cryptotoken/usbgnubbyfactory.js
blob: 6363d364ef30127a453ff2ce9de516076cee6ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2014 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.

/**
 * @fileoverview Contains a simple factory for creating and opening usbGnubby
 * instances.
 */
'use strict';

/**
 * @param {Gnubbies} gnubbies Gnubbies singleton instance
 * @constructor
 * @implements {GnubbyFactory}
 */
function UsbGnubbyFactory(gnubbies) {
  /** @private {Gnubbies} */
  this.gnubbies_ = gnubbies;
  usbGnubby.setGnubbies(gnubbies);
}

/**
 * Creates a new gnubby object, and opens the gnubby with the given index.
 * @param {llGnubbyDeviceId} which The device to open.
 * @param {boolean} forEnroll Whether this gnubby is being opened for enrolling.
 * @param {function(number, usbGnubby=)} cb Called with result of opening the
 *     gnubby.
 * @param {string=} logMsgUrl the url to post log messages to
 * @override
 */
UsbGnubbyFactory.prototype.openGnubby =
    function(which, forEnroll, cb, logMsgUrl) {
  var gnubby = new usbGnubby();
  gnubby.open(which, function(rc) {
    cb(rc, gnubby);
  });
};

/**
 * Enumerates gnubbies.
 * @param {function(number, Array.<llGnubbyDeviceId>)} cb Enumerate callback
 */
UsbGnubbyFactory.prototype.enumerate = function(cb) {
  this.gnubbies_.enumerate(cb);
};