summaryrefslogtreecommitdiffstats
path: root/comm/mail/modules/SessionStore.jsm
blob: 162abfecef193faa06a578cf7a86c48d38a41d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

var EXPORTED_SYMBOLS = ["SessionStore"];

/**
 * This is a shim for SessionStore in moz-central to prevent bug 1713801. Only
 * the methods that appear to be hit by comm-central are implemented.
 */
var SessionStore = {
  updateSessionStoreFromTablistener(aBrowser, aBrowsingContext, aData) {},
  maybeExitCrashedState() {},
};