2014-02-24 00:19:43 +04:00
|
|
|
/* -*- 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 nsColorPickerProxy_h
|
|
|
|
#define nsColorPickerProxy_h
|
|
|
|
|
|
|
|
#include "nsIColorPicker.h"
|
|
|
|
|
|
|
|
#include "mozilla/dom/PColorPickerChild.h"
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsColorPickerProxy final : public nsIColorPicker,
|
2015-03-27 21:52:19 +03:00
|
|
|
public mozilla::dom::PColorPickerChild {
|
2014-02-24 00:19:43 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICOLORPICKER
|
|
|
|
|
|
|
|
nsColorPickerProxy() {}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
virtual mozilla::ipc::IPCResult RecvUpdate(const nsString& aColor) override;
|
|
|
|
virtual mozilla::ipc::IPCResult Recv__delete__(
|
|
|
|
const nsString& aColor) override;
|
2014-02-24 00:19:43 +04:00
|
|
|
|
|
|
|
private:
|
2014-06-24 20:36:44 +04:00
|
|
|
~nsColorPickerProxy() {}
|
|
|
|
|
2014-02-24 00:19:43 +04:00
|
|
|
nsCOMPtr<nsIColorPickerShownCallback> mCallback;
|
|
|
|
nsString mTitle;
|
|
|
|
nsString mInitialColor;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsColorPickerProxy_h
|