2012-05-21 15:12:37 +04: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/. */
|
2010-11-10 17:40:00 +03:00
|
|
|
|
|
|
|
#include "nsIMEPicker.h"
|
|
|
|
#include "AndroidBridge.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS(nsIMEPicker, nsIIMEPicker)
|
2010-11-10 17:40:00 +03:00
|
|
|
|
|
|
|
nsIMEPicker::nsIMEPicker()
|
|
|
|
{
|
|
|
|
/* member initializers and constructor code */
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIMEPicker::~nsIMEPicker()
|
|
|
|
{
|
|
|
|
/* destructor code */
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsIMEPicker::Show()
|
|
|
|
{
|
2015-01-10 03:33:57 +03:00
|
|
|
widget::GeckoAppShell::ShowInputMethodPicker();
|
2010-11-10 17:40:00 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|