Open main menu

CDOT Wiki β

Changes

Discussion of Using XPCOM Components

7 bytes added, 15:45, 19 November 2008
m
Cookie Manager Source
As you would expect from our XPCOM lab, [https://developer.mozilla.org/En/NsICookieManager nsICookieManager] is really two parts:
* a public interface in the form of an IDL file, [http://hg.mozilla.org/mozilla-central/file/0cd41f599080/netwerk/cookie/public/nsICookiensICookieManager.idl nsICookieManager.idl], which lives in [http://hg.mozilla.org/mozilla-central/file/0cd41f599080/netwerk/cookie/public netwerk/cookie/public]
* C++ code that implements this interface, in the form of [http://hg.mozilla.org/mozilla-central/file/0cd41f599080/netwerk/cookie/src/nsCookieService.cpp nsCookieService.cpp] and [http://hg.mozilla.org/mozilla-central/file/0cd41f599080/netwerk/cookie/src/nsCookieService.h nsCookieService.h], located in [http://hg.mozilla.org/mozilla-central/file/0cd41f599080/netwerk/cookie/src netwerk/cookie/src].