@@ -185,7 +185,7 @@ cls.NetworkLoggerService = function()
185185
186186 this . _on_setting_changed_bound = function ( message )
187187 {
188- if ( message . id === "network_logger" &&
188+ if ( message . id === "network_logger" &&
189189 message . key === "track-content" )
190190 {
191191 this . setup_content_tracking_bound ( ) ;
@@ -234,7 +234,7 @@ cls.NetworkLoggerService = function()
234234 this . get_resource_info = function ( resource_id )
235235 {
236236 // Returns a ResourceInfo based on the most recent Entry with that resource_id.
237- var entry = this . _current_context &&
237+ var entry = this . _current_context &&
238238 this . _current_context . get_entries_with_res_id ( resource_id ) . last ;
239239 if ( entry && entry . current_response && entry . current_response . responsebody )
240240 {
@@ -428,10 +428,10 @@ cls.RequestContextPrototype = function()
428428
429429 this . _event_changes_req_id = function ( event , current_entry )
430430 {
431- /*
432- Checks if the event's requestID is different from the one in current_entry.
433- That should never be the case, since the "urlload" event initiates
434- a new entry and that doesn't have a requestID. Note that current_entry is
431+ /*
432+ Checks if the event's requestID is different from the one in current_entry.
433+ That should never be the case, since the "urlload" event initiates
434+ a new entry and that doesn't have a requestID. Note that current_entry is
435435 the last entry we saw with the event's resourceID.
436436 */
437437 return event . requestID &&
@@ -456,7 +456,7 @@ cls.RequestContextPrototype = function()
456456 return ;
457457 }
458458
459- // For responsebody, all entries with that resourceID need to be updated.
459+ // For responsebody, all entries with that resourceID need to be updated.
460460 // Others are callbacks that belongs to the current (and last) entry of that resourceID.
461461 if ( eventname === "responsebody" )
462462 {
@@ -482,7 +482,7 @@ cls.RequestContextPrototype = function()
482482 {
483483 opera . postError ( ui_strings . S_DRAGONFLY_INFO_MESSAGE +
484484 " Unexpected change in requestID on " + eventname +
485- ": Change from " + logger_entry . _requestID + " to " +
485+ ": Change from " + logger_entry . _requestID + " to " +
486486 event . requestID + ", URL: " + logger_entry . human_url ) ;
487487 }
488488 }
@@ -603,7 +603,7 @@ cls.NetworkLoggerEntryPrototype = function()
603603 var CLASSNAME_RECEIVING = "receiving" ;
604604 var CLASSNAME_IRREGULAR = "irregular" ;
605605
606- /* // gap_def format:
606+ /* // gap_def format:
607607 {
608608 classname: type of sequence,
609609 sequences: {
@@ -613,7 +613,7 @@ cls.NetworkLoggerEntryPrototype = function()
613613 ]
614614 }
615615 } */
616-
616+
617617 var gap_defs = {
618618 "urlload" : {
619619 "request" : {
@@ -624,7 +624,7 @@ cls.NetworkLoggerEntryPrototype = function()
624624 title : ui_strings . S_HTTP_EVENT_SEQUENCE_INFO_READING_LOCAL_DATA ,
625625 classname : CLASSNAME_BLOCKED
626626 } ,
627- // The response-phase can be closed without ever seeing a response event, for
627+ // The response-phase can be closed without ever seeing a response event, for
628628 // example because the request was aborted. See CORE-43284.
629629 "responsefinished" : {
630630 title : ui_strings . S_HTTP_EVENT_SEQUENCE_INFO_CLOSING_RESPONSE_PHASE ,
@@ -706,10 +706,10 @@ cls.NetworkLoggerEntryPrototype = function()
706706 }
707707 } ;
708708
709- // What is not defined as it's own case by the above, but it terminated by
709+ // What is not defined as it's own case by the above, but it terminated by
710710 // urlredirect, requestretry or urlfinished, will be defined regardless of the preceding event
711711
712- /* // gap_def_to_phase format:
712+ /* // gap_def_to_phase format:
713713 {
714714 classname: type of sequence,
715715 sequences: {
@@ -834,7 +834,7 @@ cls.NetworkLoggerEntryPrototype = function()
834834
835835 this . _update_event_requestretry = function ( event )
836836 {
837- // This means on the next request with event.toRequestID, we won't
837+ // This means on the next request with event.toRequestID, we won't
838838 // make a new entry, but a new NetworkLoggerRequest on the same entry.
839839 this . _requestID = event . toRequestID ;
840840 } ;
0 commit comments