mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-03 09:48:38 +02:00
Lift `aIid` to compile-time, as a template parameter `InterfaceT`. This simplifies the common case for using `Resolve()`, where the desired and supplied interfaces are the same. (For the as-yet-unattested case where they're not, retain the old functionality by means of a small family of `ResolveAs()` functions.) Additionally, to eliminate a swath of custom logic and magic-number choices surrounding `mHResult`, eliminate `mHResult` itself as well. Instead, since its value was derived from the creation of the underlying `IAgileReference`, any callers that might care can acquire it as an additional return value from a named-constructor function. These collectively trim `AgileReference`'s footprint down to a single `RefPtr`, with all its special member functions having only default implementations. Differential Revision: https://phabricator.services.mozilla.com/D196513
71 lines
2 KiB
C++
71 lines
2 KiB
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 __LegacyJumpListBuilder_h__
|
|
#define __LegacyJumpListBuilder_h__
|
|
|
|
#include <windows.h>
|
|
|
|
// Needed for various com interfaces
|
|
#include <shobjidl.h>
|
|
#undef LogSeverity // SetupAPI.h #defines this as DWORD
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsILegacyJumpListBuilder.h"
|
|
#include "nsILegacyJumpListItem.h"
|
|
#include "LegacyJumpListItem.h"
|
|
#include "nsIObserver.h"
|
|
#include "nsTArray.h"
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/LazyIdleThread.h"
|
|
#include "mozilla/mscom/AgileReference.h"
|
|
#include "mozilla/ReentrantMonitor.h"
|
|
|
|
namespace mozilla {
|
|
namespace widget {
|
|
|
|
namespace detail {
|
|
class DoneCommitListBuildCallback;
|
|
} // namespace detail
|
|
|
|
class LegacyJumpListBuilder : public nsILegacyJumpListBuilder,
|
|
public nsIObserver {
|
|
virtual ~LegacyJumpListBuilder();
|
|
|
|
public:
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
NS_DECL_NSILEGACYJUMPLISTBUILDER
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
LegacyJumpListBuilder();
|
|
|
|
protected:
|
|
static Atomic<bool> sBuildingList;
|
|
|
|
private:
|
|
mscom::AgileReference<ICustomDestinationList> mJumpListMgr
|
|
MOZ_GUARDED_BY(mMonitor);
|
|
uint32_t mMaxItems MOZ_GUARDED_BY(mMonitor);
|
|
bool mHasCommit;
|
|
RefPtr<LazyIdleThread> mIOThread;
|
|
ReentrantMonitor mMonitor;
|
|
nsString mAppUserModelId;
|
|
|
|
bool IsSeparator(nsCOMPtr<nsILegacyJumpListItem>& item);
|
|
void RemoveIconCacheAndGetJumplistShortcutURIs(IObjectArray* aObjArray,
|
|
nsTArray<nsString>& aURISpecs);
|
|
void DeleteIconFromDisk(const nsAString& aPath);
|
|
nsresult RemoveIconCacheForAllItems();
|
|
void DoCommitListBuild(RefPtr<detail::DoneCommitListBuildCallback> aCallback);
|
|
void DoInitListBuild(RefPtr<dom::Promise>&& aPromise);
|
|
|
|
friend class WinTaskbar;
|
|
};
|
|
|
|
} // namespace widget
|
|
} // namespace mozilla
|
|
|
|
#endif /* __LegacyJumpListBuilder_h__ */
|