Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js

Issue 2899163002: DevTools: Promisify Runtime domain (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
index 795f6d63b10cf2f4761b0c0e0467e22e7ac56a72..5bb66551c718322b507bd6609508fa3dad472181 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
@@ -247,22 +247,20 @@ SDK.RuntimeModel = class extends SDK.SDKModel {
* @param {number} executionContextId
* @param {function(!Protocol.Runtime.ScriptId=, ?Protocol.Runtime.ExceptionDetails=)=} callback
*/
- compileScript(expression, sourceURL, persistScript, executionContextId, callback) {
- this._agent.compileScript(expression, sourceURL, persistScript, executionContextId, innerCallback);
-
- /**
- * @param {?Protocol.Error} error
- * @param {!Protocol.Runtime.ScriptId=} scriptId
- * @param {?Protocol.Runtime.ExceptionDetails=} exceptionDetails
- */
- function innerCallback(error, scriptId, exceptionDetails) {
- if (error) {
- console.error(error);
- return;
- }
- if (callback)
- callback(scriptId, exceptionDetails);
+ async compileScript(expression, sourceURL, persistScript, executionContextId, callback) {
+ var response = await this._agent.invoke_compileScript({
+ expression: expression,
+ sourceURL: sourceURL,
+ persistScript: persistScript,
+ executionContextId: executionContextId
+ });
+
+ if (response[Protocol.Error]) {
+ console.error(response[Protocol.Error]);
+ return;
}
+ if (callback)
+ callback(response.scriptId, response.exceptionDetails);
}
/**
@@ -276,33 +274,26 @@ SDK.RuntimeModel = class extends SDK.SDKModel {
* @param {boolean=} awaitPromise
* @param {function(?Protocol.Runtime.RemoteObject, ?Protocol.Runtime.ExceptionDetails=)=} callback
*/
- runScript(
- scriptId,
- executionContextId,
- objectGroup,
- silent,
- includeCommandLineAPI,
- returnByValue,
- generatePreview,
- awaitPromise,
- callback) {
- this._agent.runScript(
- scriptId, executionContextId, objectGroup, silent, includeCommandLineAPI, returnByValue, generatePreview,
- awaitPromise, innerCallback);
-
- /**
- * @param {?Protocol.Error} error
- * @param {!Protocol.Runtime.RemoteObject} result
- * @param {!Protocol.Runtime.ExceptionDetails=} exceptionDetails
- */
- function innerCallback(error, result, exceptionDetails) {
- if (error) {
- console.error(error);
- return;
- }
- if (callback)
- callback(result, exceptionDetails);
+ async runScript(
+ scriptId, executionContextId, objectGroup, silent, includeCommandLineAPI, returnByValue, generatePreview,
+ awaitPromise, callback) {
+ var response = await this._agent.invoke_runScript({
+ scriptId: scriptId,
pfeldman 2017/05/24 00:43:32 Use object shortcuts here and everywhere, only for
alph 2017/05/24 01:42:58 Done.
+ executionContextId: executionContextId,
+ objectGroup: objectGroup,
+ silent: silent,
+ includeCommandLineAPI: includeCommandLineAPI,
+ returnByValue: returnByValue,
+ generatePreview: generatePreview,
+ awaitPromise: awaitPromise
+ });
+
+ if (response[Protocol.Error]) {
+ console.error(response[Protocol.Error]);
+ return;
}
+ if (callback)
+ callback(response.result, response.exceptionDetails);
}
/**
@@ -646,37 +637,32 @@ SDK.ExecutionContext = class {
* @param {boolean} userGesture
* @param {function(?SDK.RemoteObject, !Protocol.Runtime.ExceptionDetails=, string=)} callback
*/
- _evaluateGlobal(
- expression,
- objectGroup,
- includeCommandLineAPI,
- silent,
- returnByValue,
- generatePreview,
- userGesture,
- callback) {
+ async _evaluateGlobal(
+ expression, objectGroup, includeCommandLineAPI, silent, returnByValue, generatePreview, userGesture, callback) {
if (!expression) {
// There is no expression, so the completion should happen against global properties.
expression = 'this';
}
- /**
- * @this {SDK.ExecutionContext}
- * @param {?Protocol.Error} error
- * @param {!Protocol.Runtime.RemoteObject} result
- * @param {!Protocol.Runtime.ExceptionDetails=} exceptionDetails
- */
- function evalCallback(error, result, exceptionDetails) {
- if (error) {
- console.error(error);
- callback(null, undefined, error);
- return;
- }
- callback(this.runtimeModel.createRemoteObject(result), exceptionDetails);
+ var response = await this.runtimeModel._agent.invoke_evaluate({
+ expression: expression,
+ objectGroup: objectGroup,
+ includeCommandLineAPI: includeCommandLineAPI,
+ silent: silent,
+ contextId: this.id,
+ returnByValue: returnByValue,
+ generatePreview: generatePreview,
+ userGesture: userGesture,
+ awaitPromise: false
+ });
+
+ var error = response[Protocol.Error];
+ if (error) {
+ console.error(error);
+ callback(null, undefined, error);
+ return;
}
- this.runtimeModel._agent.evaluate(
- expression, objectGroup, includeCommandLineAPI, silent, this.id, returnByValue, generatePreview, userGesture,
- false, evalCallback.bind(this));
+ callback(this.runtimeModel.createRemoteObject(response.result), response.exceptionDetails);
}
/**

Powered by Google App Engine
This is Rietveld 408576698