forked from mirrors/gecko-dev
		
	 541e9a6989
			
		
	
	
		541e9a6989
		
	
	
	
	
		
			
			MozReview-Commit-ID: EEVSPkAgORY --HG-- extra : rebase_source : 8a3da61bdf0f65c518e6cea3c6f5cacf42c6d24d
		
			
				
	
	
		
			57 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
 | |
| /* vim: set sts=2 sw=2 et tw=80: */
 | |
| "use strict";
 | |
| 
 | |
| // The ext-* files are imported into the same scopes.
 | |
| /* import-globals-from ext-devtools.js */
 | |
| /* import-globals-from ext-browser.js */
 | |
| 
 | |
| var {
 | |
|   SpreadArgs,
 | |
| } = ExtensionCommon;
 | |
| 
 | |
| this.devtools_inspectedWindow = class extends ExtensionAPI {
 | |
|   getAPI(context) {
 | |
|     // Lazily retrieved inspectedWindow actor front per child context.
 | |
|     let waitForInspectedWindowFront;
 | |
| 
 | |
|     // TODO(rpl): retrive a more detailed callerInfo object, like the filename and
 | |
|     // lineNumber of the actual extension called, in the child process.
 | |
|     const callerInfo = {
 | |
|       addonId: context.extension.id,
 | |
|       url: context.extension.baseURI.spec,
 | |
|     };
 | |
| 
 | |
|     return {
 | |
|       devtools: {
 | |
|         inspectedWindow: {
 | |
|           async eval(expression, options) {
 | |
|             if (!waitForInspectedWindowFront) {
 | |
|               waitForInspectedWindowFront = getInspectedWindowFront(context);
 | |
|             }
 | |
| 
 | |
|             const front = await waitForInspectedWindowFront;
 | |
| 
 | |
|             const evalOptions = Object.assign({}, options, getToolboxEvalOptions(context));
 | |
| 
 | |
|             const evalResult = await front.eval(callerInfo, expression, evalOptions);
 | |
| 
 | |
|             // TODO(rpl): check for additional undocumented behaviors on chrome
 | |
|             // (e.g. if we should also print error to the console or set lastError?).
 | |
|             return new SpreadArgs([evalResult.value, evalResult.exceptionInfo]);
 | |
|           },
 | |
|           async reload(options) {
 | |
|             const {ignoreCache, userAgent, injectedScript} = options || {};
 | |
| 
 | |
|             if (!waitForInspectedWindowFront) {
 | |
|               waitForInspectedWindowFront = getInspectedWindowFront(context);
 | |
|             }
 | |
| 
 | |
|             const front = await waitForInspectedWindowFront;
 | |
|             front.reload(callerInfo, {ignoreCache, userAgent, injectedScript});
 | |
|           },
 | |
|         },
 | |
|       },
 | |
|     };
 | |
|   }
 | |
| };
 |