1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/components/downloads/test/unit/head.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* vim: set ts=2 et sw=2 tw=80: */ 1.6 +/* Any copyright is dedicated to the Public Domain. 1.7 + http://creativecommons.org/publicdomain/zero/1.0/ */ 1.8 + 1.9 +/** 1.10 + * Provides infrastructure for automated download components tests. 1.11 + */ 1.12 + 1.13 +//////////////////////////////////////////////////////////////////////////////// 1.14 +//// Globals 1.15 + 1.16 +const Cc = Components.classes; 1.17 +const Ci = Components.interfaces; 1.18 +const Cu = Components.utils; 1.19 +const Cr = Components.results; 1.20 + 1.21 +Cu.import("resource:///modules/DownloadsCommon.jsm");