Source: storage.js

/**
 * Functions to store and reload our data between page visits.
 * @constructor
 */
function OxideStorage() {
    'use strict';

    // TODO ROADMAP 1.2 replace calls to localStorage by this class so we can use it to fall back to other methods in case localStorage is blocked.
};