dom/mobilemessage/src/MobileMessageCursorCallback.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/mobilemessage/src/MobileMessageCursorCallback.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,53 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +#ifndef mozilla_dom_mobilemessage_MobileMessageCursorCallback_h
    1.10 +#define mozilla_dom_mobilemessage_MobileMessageCursorCallback_h
    1.11 +
    1.12 +#include "nsIMobileMessageCursorCallback.h"
    1.13 +#include "nsCycleCollectionParticipant.h"
    1.14 +#include "nsCOMPtr.h"
    1.15 +#include "nsAutoPtr.h"
    1.16 +
    1.17 +class nsICursorContinueCallback;
    1.18 +
    1.19 +namespace mozilla {
    1.20 +namespace dom {
    1.21 +
    1.22 +class DOMCursor;
    1.23 +class MobileMessageManager;
    1.24 +
    1.25 +namespace mobilemessage {
    1.26 +
    1.27 +class MobileMessageCursorCallback : public nsIMobileMessageCursorCallback
    1.28 +{
    1.29 +  friend class mozilla::dom::MobileMessageManager;
    1.30 +
    1.31 +public:
    1.32 +  NS_DECL_CYCLE_COLLECTING_ISUPPORTS
    1.33 +  NS_DECL_NSIMOBILEMESSAGECURSORCALLBACK
    1.34 +
    1.35 +  NS_DECL_CYCLE_COLLECTION_CLASS(MobileMessageCursorCallback)
    1.36 +
    1.37 +  MobileMessageCursorCallback()
    1.38 +  {
    1.39 +    MOZ_COUNT_CTOR(MobileMessageCursorCallback);
    1.40 +  }
    1.41 +
    1.42 +private:
    1.43 +  virtual ~MobileMessageCursorCallback()
    1.44 +  {
    1.45 +    MOZ_COUNT_DTOR(MobileMessageCursorCallback);
    1.46 +  }
    1.47 +
    1.48 +  nsRefPtr<DOMCursor> mDOMCursor;
    1.49 +};
    1.50 +
    1.51 +} // namespace mobilemessage
    1.52 +} // namespace dom
    1.53 +} // namespace mozilla
    1.54 +
    1.55 +#endif // mozilla_dom_mobilemessage_MobileMessageCursorCallback_h
    1.56 +

mercurial