Files
palemoon27/browser/components/shell/nsMacShellService.h
T
roytam1 47d0459001 import changes from `dev' branch of rmottola/Arctic-Fox:
- Bug 1199466 - part 1 - Expose originAttributes in nsICookie, r=jduell (a2273aad63)
- Bug 1103314 - Clarify label of "Remove All Cookies" button to indicate whether it removes all cookies or just removes the cookies shown. r=dao (38c7786e15)
- Bug 1199466 - part 2 - Cookie manager in FF preferences should show the userContextId, r=paolo (74e7e421eb)
- Bug 1239606 - Implement UserContextUI.jsm, r=paolo (1d1edecfff)
- Bug 1244795 - adding a string for the default container under cookie manager, r=paolo (9a83def6c5)
- Bug 1244795 - adding a string for the default container under cookie manager, part 2, r=me (a2f6382fdb)
- Bug 1119747 - Fix up selected cookie count. r=dao (5bb5a63a26)
- Bug 1118226 - Allow to add number to string for removing selected cookies to improve localizability. r=dao (153d08797c)
- Bug 1243643 - Don't pass unsafe CPOWs to saveImageURL when offering to save media to disk. r=jld (4e3a0b9ea2)
- Bug 1244248: Cache the certificate database during startup rather than getting it everytime it is needed. r=rhelmer (aafe8e9820)
- Bug 1195353 - leave extension proxy files that point to invalid manifests r=mossop (4f1a82a3d7)
- Bug 1244357: Use a shim around the certificate DB to allow the add-ons manager to think that add-ons are signed when they aren't. r=rhelmer (e0e239a63c)
- Bug 1172724 - Use the "openas" verb to select the default HTTP handler on Windows 10. r=jaws, jimm (4488b9f0cb)
- Bug 791501 - Default Programs UI should select Firefox by default. r=jimm (722973de01)
- Bug 1238712 - Move duplicated shell-service code to a shared JSM. r=gijs (7d55c3dbe1)
- Bug 1039845 - Give nsWindowsShellService a private destructor; r=bjacob (cbba5f167b)
- Bug 1184508 - Remember registry hash for later use on Win8+. r=jimm (b6c6bbcbb7)
- Bug 1216150 - Split xpc::InitGlobalObject into an options-setting component and a global-object-modifying component, with the options-setting component being called before global object creation in all callers. r=bz (5393e6a522)
- Bug 1139849 - postMessage to incorrect target domain should print a console security error r=bz (df179f78cf)
- Bug 1236580 - Remove the IS_UNIFIED_TELEMETRY constant and the related preferences. r=gfritzsche (687c1f149e)
- Bug 920169 - Remove references to C++ constants in Histograms.json. r=gfritzsche (4f287dfbd9)
- Bug 1234526 - Don't track healthreport.sqlite statements from Telemetry. r=gfritzsche (aaf0e88c25)
- Bug 1241508 - Have TelemetryImpl::RecordIceCandidates check for mCanRecordExtended. r=drno (9729fdd17b)
2023-12-15 13:52:19 +08:00

33 lines
849 B
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#ifndef nsmacshellservice_h____
#define nsmacshellservice_h____
#include "nsIMacShellService.h"
#include "nsIWebProgressListener.h"
#include "nsIFile.h"
#include "nsCOMPtr.h"
class nsMacShellService : public nsIMacShellService,
public nsIWebProgressListener
{
public:
nsMacShellService() {};
NS_DECL_ISUPPORTS
NS_DECL_NSISHELLSERVICE
NS_DECL_NSIMACSHELLSERVICE
NS_DECL_NSIWEBPROGRESSLISTENER
protected:
virtual ~nsMacShellService() {};
private:
nsCOMPtr<nsIFile> mBackgroundFile;
};
#endif // nsmacshellservice_h____