mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
65f0916abe
--HG-- extra : rebase_source : f8214c757d49f433c37563e9ceed86e81f25eb1e
30 lines
1011 B
Plaintext
30 lines
1011 B
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* 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/. */
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
[scriptable, uuid(351887ca-56b2-4458-96fc-88baeb57b6e7)]
|
|
interface nsISidebar : nsISupports
|
|
{
|
|
void addSearchEngine(in DOMString engineURL, in DOMString iconURL,
|
|
in DOMString suggestedTitle, in DOMString suggestedCategory);
|
|
};
|
|
|
|
[scriptable, uuid(5895076f-e28e-434a-9fdb-a69f94eb323f)]
|
|
interface nsISidebarExternal : nsISupports
|
|
{
|
|
void AddSearchProvider(in DOMString aDescriptionURL);
|
|
unsigned long IsSearchProviderInstalled(in DOMString aSearchURL);
|
|
};
|
|
|
|
%{ C++
|
|
// {577CB744-8CAF-11d3-AAEF-00805F8A4905}
|
|
#define NS_SIDEBAR_CID \
|
|
{ 0x577cb744, 0x8caf, 0x11d3, { 0xaa, 0xef, 0x0, 0x80, 0x5f, 0x8a, 0x49, 0x5 } }
|
|
|
|
#define NS_SIDEBAR_CONTRACTID "@mozilla.org/sidebar;1"
|
|
%}
|