2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2011-01-14 14:38:34 -08:00
|
|
|
|
|
|
|
#ifndef mozilla_places_VisitInfo_h__
|
|
|
|
#define mozilla_places_VisitInfo_h__
|
|
|
|
|
|
|
|
#include "mozIAsyncHistory.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2012-07-12 11:07:50 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2011-01-14 14:38:34 -08:00
|
|
|
|
|
|
|
class nsIURI;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace places {
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class VisitInfo final : public mozIVisitInfo
|
2011-01-14 14:38:34 -08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_MOZIVISITINFO
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
VisitInfo(int64_t aVisitId, PRTime aVisitDate, uint32_t aTransitionType,
|
2013-03-25 06:44:41 -07:00
|
|
|
already_AddRefed<nsIURI> aReferrer);
|
2011-01-14 14:38:34 -08:00
|
|
|
|
|
|
|
private:
|
2014-06-23 15:40:02 -07:00
|
|
|
~VisitInfo();
|
2012-08-22 08:56:38 -07:00
|
|
|
const int64_t mVisitId;
|
2011-01-14 14:38:34 -08:00
|
|
|
const PRTime mVisitDate;
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t mTransitionType;
|
2011-01-14 14:38:34 -08:00
|
|
|
nsCOMPtr<nsIURI> mReferrer;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace places
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_places_VisitInfo_h__
|