forked from mirrors/gecko-dev
		
	MozReview-Commit-ID: BQoWF9nHOuF --HG-- rename : browser/components/extensions/ext-desktop-runtime.js => browser/components/extensions/ext-browser.js extra : source : 7fd4ade8811856e835506310a57725dbd355c786 extra : histedit_source : c1775902971f858bfaa386977ca8d579c0ce3c61%2C489e3ed33d4c1bb47c3afbe30849b42e83771f48
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			775 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			775 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
 | 
						|
/* vim: set sts=2 sw=2 et tw=80: */
 | 
						|
"use strict";
 | 
						|
 | 
						|
this.devtools_inspectedWindow = class extends ExtensionAPI {
 | 
						|
  getAPI(context) {
 | 
						|
    // `devtoolsToolboxInfo` is received from the child process when the root devtools view
 | 
						|
    // has been created, and every sub-frame of that top level devtools frame will
 | 
						|
    // receive the same information when the context has been created from the
 | 
						|
    // `ExtensionChild.createExtensionContext` method.
 | 
						|
    let tabId = (context.devtoolsToolboxInfo &&
 | 
						|
                 context.devtoolsToolboxInfo.inspectedWindowTabId);
 | 
						|
 | 
						|
    return {
 | 
						|
      devtools: {
 | 
						|
        inspectedWindow: {
 | 
						|
          get tabId() {
 | 
						|
            return tabId;
 | 
						|
          },
 | 
						|
        },
 | 
						|
      },
 | 
						|
    };
 | 
						|
  }
 | 
						|
};
 |