File tree Expand file tree Collapse file tree 4 files changed +293
-689
lines changed
Expand file tree Collapse file tree 4 files changed +293
-689
lines changed Original file line number Diff line number Diff line change @@ -105,8 +105,8 @@ Cookie.prototype = {
105105
106106 get cookieManager ( ) {
107107 delete Cookie . prototype . cookieManager ;
108- var cman = CC [ "@mozilla.org/cookiemanager;1" ]
109- . getService ( CI . nsICookieManager2 ) . QueryInterface ( CI . nsICookieManager ) ;
108+ var cman = Cc [ "@mozilla.org/cookiemanager;1" ]
109+ . getService ( Ci . nsICookieManager2 ) . QueryInterface ( Ci . nsICookieManager ) ;
110110 return Cookie . prototype . cookieManager = cman ;
111111 } ,
112112 belongsTo : function ( host , path ) {
@@ -131,7 +131,7 @@ Cookie.prototype = {
131131 } ,
132132
133133 sameAs : function ( c ) {
134- ( c instanceof CI . nsICookie ) && ( c instanceof CI . nsICookie2 ) ;
134+ ( c instanceof Ci . nsICookie ) && ( c instanceof Ci . nsICookie2 ) ;
135135 return Cookie . computeId ( c ) == this . id ;
136136 } ,
137137
@@ -143,6 +143,6 @@ Cookie.prototype = {
143143 get isDomain ( ) { return this . domain && this . domain [ 0 ] == '.' ; } ,
144144 policy : 0 ,
145145 status : 0 ,
146- QueryInterface : xpcom_generateQI ( [ CI . nsICookie , CI . nsICookie2 ] )
146+ QueryInterface : xpcom_generateQI ( [ Ci . nsICookie , Ci . nsICookie2 ] )
147147
148148}
You can’t perform that action at this time.
0 commit comments