00001 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 00002 /* ***** BEGIN LICENSE BLOCK ***** 00003 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 00004 * 00005 * The contents of this file are subject to the Mozilla Public License Version 00006 * 1.1 (the "License"); you may not use this file except in compliance with 00007 * the License. You may obtain a copy of the License at 00008 * http://www.mozilla.org/MPL/ 00009 * 00010 * Software distributed under the License is distributed on an "AS IS" basis, 00011 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 00012 * for the specific language governing rights and limitations under the 00013 * License. 00014 * 00015 * The Original Code is Places code 00016 * 00017 * The Initial Developer of the Original Code is 00018 * Google Inc. 00019 * Portions created by the Initial Developer are Copyright (C) 2005 00020 * the Initial Developer. All Rights Reserved. 00021 * 00022 * Contributor(s): 00023 * Annie Sullivan <annie.sullivan@gmail.com> 00024 * Joe Hughes <joe@retrovirus.com> 00025 * Takeshi Ichimaru <ayakawa.m@gmail.com> 00026 * 00027 * Alternatively, the contents of this file may be used under the terms of 00028 * either the GNU General Public License Version 2 or later (the "GPL"), or 00029 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 00030 * in which case the provisions of the GPL or the LGPL are applicable instead 00031 * of those above. If you wish to allow use of your version of this file only 00032 * under the terms of either the GPL or the LGPL, and not to allow others to 00033 * use your version of this file under the terms of the MPL, indicate your 00034 * decision by deleting the provisions above and replace them with the notice 00035 * and other provisions required by the GPL or the LGPL. If you do not delete 00036 * the provisions above, a recipient may use your version of this file under 00037 * the terms of any one of the MPL, the GPL or the LGPL. 00038 * 00039 * ***** END LICENSE BLOCK ***** */ 00040 00041 #include "nsISupports.idl" 00042 00043 interface nsIURI; 00044 interface nsINavBookmarksService; 00045 00046 [scriptable, uuid(2c08ab79-7f9b-40f3-8d04-540b5857b211)] 00047 interface nsILivemarkService : nsISupports 00048 { 00054 void start(); 00055 00059 void stopUpdateLivemarks(); 00060 00070 long long createLivemark(in long long folder, 00071 in AString name, 00072 in nsIURI siteURI, 00073 in nsIURI feedURI, 00074 in long index); 00075 00079 long long createLivemarkFolderOnly(in long long folder, 00080 in AString name, 00081 in nsIURI siteURI, 00082 in nsIURI feedURI, 00083 in long index); 00084 00096 boolean isLivemark(in long long folder); 00097 00111 nsIURI getSiteURI(in long long container); 00112 00124 void setSiteURI(in long long container, in nsIURI siteURI); 00125 00140 nsIURI getFeedURI(in long long container); 00141 00156 void setFeedURI(in long long container, in nsIURI feedURI); 00157 00161 void reloadAllLivemarks(); 00162 00167 void reloadLivemarkFolder(in long long folderID); 00168 }; 00169 00170 %{C++ 00171 #define LMANNO_FEEDURI "livemark/feedURI" 00172 %}
1.5.8