blob: 8695d0698ac1ee0345a268c174aba6265d71b79d [file] [log] [blame]
// 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 This provides the different message types for the gnubby
* operations.
*/
var GnubbyMsgTypes = {};
/**
* Enroll request message type.
* @const
*/
GnubbyMsgTypes.ENROLL_WEB_REQUEST = 'enroll_web_request';
/**
* Enroll reply message type.
* @const
*/
GnubbyMsgTypes.ENROLL_WEB_REPLY = 'enroll_web_reply';
/**
* Enroll notification message type.
* @const
*/
GnubbyMsgTypes.ENROLL_WEB_NOTIFICATION = 'enroll_web_notification';
/**
* Sign request message type.
* @const
*/
GnubbyMsgTypes.SIGN_WEB_REQUEST = 'sign_web_request';
/**
* Sign reply message type.
* @const
*/
GnubbyMsgTypes.SIGN_WEB_REPLY = 'sign_web_reply';
/**
* Sign notification message type.
* @const
*/
GnubbyMsgTypes.SIGN_WEB_NOTIFICATION = 'sign_web_notification';