/* -*- 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 // Needed for various com interfaces #include #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 sBuildingList; private: mscom::AgileReference mJumpListMgr MOZ_GUARDED_BY(mMonitor); uint32_t mMaxItems MOZ_GUARDED_BY(mMonitor); bool mHasCommit; RefPtr mIOThread; ReentrantMonitor mMonitor; nsString mAppUserModelId; bool IsSeparator(nsCOMPtr& item); void RemoveIconCacheAndGetJumplistShortcutURIs(IObjectArray* aObjArray, nsTArray& aURISpecs); void DeleteIconFromDisk(const nsAString& aPath); nsresult RemoveIconCacheForAllItems(); void DoCommitListBuild(RefPtr aCallback); void DoInitListBuild(RefPtr&& aPromise); friend class WinTaskbar; }; } // namespace widget } // namespace mozilla #endif /* __LegacyJumpListBuilder_h__ */