Skip to content

Commit

Permalink
Adding missing overrides to EmbedLiteXulAppInfo to sync with nsIXULRu…
Browse files Browse the repository at this point in the history
…ntime
  • Loading branch information
rainemak committed Dec 19, 2016
1 parent 98ba799 commit 2bca8cc
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions embedding/embedlite/utils/EmbedLiteXulAppInfo.cpp
Expand Up @@ -205,13 +205,6 @@ EmbedLiteXulAppInfo::GetBrowserTabsRemoteAutostart(bool* aResult)
return NS_OK;
}

NS_IMETHODIMP
EmbedLiteXulAppInfo::GetKeyboardMayHaveIME(bool* aResult)
{
*aResult = true;
return NS_OK;
}

NS_IMETHODIMP
EmbedLiteXulAppInfo::GetAccessibilityEnabled(bool* aResult)
{
Expand All @@ -224,9 +217,13 @@ EmbedLiteXulAppInfo::GetAccessibilityEnabled(bool* aResult)
}

NS_IMETHODIMP
EmbedLiteXulAppInfo::GetAccessibilityIsUIA(bool* aResult)
EmbedLiteXulAppInfo::GetIs64Bit(bool* aResult)
{
#ifdef HAVE_64BIT_BUILD
*aResult = true;
#else
*aResult = false;

#endif
return NS_OK;
}

0 comments on commit 2bca8cc

Please sign in to comment.