1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5#include "nsISupports.idl"
6
7interface nsIURI;
8
9[scriptable, uuid(4c3c9a82-722a-4b0b-9c7d-36ef90135537)]
10interface nsILoginDetectionService : nsISupports
11{
12  /**
13   * called to initialize the login detection service.
14   */
15  void init();
16
17  /**
18   * Returns true if we have loaded logins from the password manager.
19   * This is now used by testcase only.
20   */
21  bool isLoginsLoaded();
22};
23