mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
44 lines
1015 B
C++
44 lines
1015 B
C++
/* 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 mozilla_places_PlaceInfo_h__
|
|
#define mozilla_places_PlaceInfo_h__
|
|
|
|
#include "mozIAsyncHistory.h"
|
|
#include "nsString.h"
|
|
#include "nsAutoPtr.h"
|
|
|
|
class nsIURI;
|
|
class mozIVisitInfo;
|
|
|
|
namespace mozilla {
|
|
namespace places {
|
|
|
|
|
|
class PlaceInfo : public mozIPlaceInfo
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_MOZIPLACEINFO
|
|
|
|
typedef nsTArray< nsCOMPtr<mozIVisitInfo> > VisitsArray;
|
|
|
|
PlaceInfo(PRInt64 aId, const nsCString& aGUID, already_AddRefed<nsIURI> aURI,
|
|
const nsString& aTitle, PRInt64 aFrecency,
|
|
const VisitsArray& aVisits);
|
|
|
|
private:
|
|
const PRInt64 mId;
|
|
const nsCString mGUID;
|
|
nsCOMPtr<nsIURI> mURI;
|
|
const nsString mTitle;
|
|
const PRInt64 mFrecency;
|
|
const VisitsArray mVisits;
|
|
};
|
|
|
|
} // namespace places
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_places_PlaceInfo_h__
|