2014-02-23 20:19:43 +00: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 16:28:04 +00:00
|
|
|
class nsColorPickerProxy final : public nsIColorPicker,
|
2015-03-27 18:52:19 +00:00
|
|
|
public mozilla::dom::PColorPickerChild
|
2014-02-23 20:19:43 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICOLORPICKER
|
|
|
|
|
|
|
|
nsColorPickerProxy() {}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool RecvUpdate(const nsString& aColor) override;
|
|
|
|
virtual bool Recv__delete__(const nsString& aColor) override;
|
2014-02-23 20:19:43 +00:00
|
|
|
|
|
|
|
private:
|
2014-06-24 16:36:44 +00:00
|
|
|
~nsColorPickerProxy() {}
|
|
|
|
|
2014-02-23 20:19:43 +00:00
|
|
|
nsCOMPtr<nsIColorPickerShownCallback> mCallback;
|
|
|
|
nsString mTitle;
|
|
|
|
nsString mInitialColor;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsColorPickerProxy_h
|