aboutsummaryrefslogtreecommitdiff
path: root/common/connection_types.js
blob: 3e9df56a91b1f09c92bbf7d9b6f1340d9236bd9d (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
/**
 * This file is part of Haketilo.
 *
 * Function: Define an "enum" of message connection types.
 *
 * Copyright (C) 2021 Wojtek Kosior
 * Redistribution terms are gathered in the `copyright' file.
 */

/*
 * Those need to be strings so they can be used as 'name' parameter
 * to browser.runtime.connect()
 */

const CONNECTION_TYPE = {
    REMOTE_STORAGE : "0",
    PAGE_ACTIONS : "1",
    ACTIVITY_INFO : "2"
};

/*
 * EXPORTS_START
 * EXPORT CONNECTION_TYPE
 * EXPORTS_END
 */