mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
883849ee32
This patch was automatically generated using the following script: function convert() { echo "Converting $1 to $2..." find . \ ! -wholename "*/.git*" \ ! -wholename "obj-ff-dbg*" \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert MOZ_OVERRIDE override convert MOZ_FINAL final
53 lines
1.6 KiB
C++
53 lines
1.6 KiB
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_dom_mobileconnection_MobileConnectionCallback_h
|
|
#define mozilla_dom_mobileconnection_MobileConnectionCallback_h
|
|
|
|
#include "mozilla/dom/DOMRequest.h"
|
|
#include "mozilla/dom/mobileconnection/MobileConnectionIPCSerializer.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIMobileConnectionService.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace mobileconnection {
|
|
|
|
/**
|
|
* A callback object for handling asynchronous request/response. This object is
|
|
* created when an asynchronous request is made and should be destroyed after
|
|
* Notify*Success/Error is called.
|
|
* The modules hold the reference of MobileConnectionCallback in OOP mode and
|
|
* non-OOP mode are different.
|
|
* - OOP mode: MobileConnectionRequestChild
|
|
* - non-OOP mode: MobileConnectionService
|
|
* The reference should be released after Notify*Success/Error is called.
|
|
*/
|
|
class MobileConnectionCallback final : public nsIMobileConnectionCallback
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIMOBILECONNECTIONCALLBACK
|
|
|
|
MobileConnectionCallback(nsPIDOMWindow* aWindow, DOMRequest* aRequest);
|
|
|
|
private:
|
|
~MobileConnectionCallback() {}
|
|
|
|
nsresult
|
|
NotifySuccess(JS::Handle<JS::Value> aResult);
|
|
|
|
nsresult
|
|
NotifySuccessWithString(const nsAString& aResult);
|
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
|
nsRefPtr<DOMRequest> mRequest;
|
|
};
|
|
|
|
} // namespace mobileconnection
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_mobileconnection_MobileConnectionCallback_h
|