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

Unified Diff: plugins/org.chromium.sdk.wipbackend.wk120709/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/runtime/CallFunctionOnParams.java

Issue 11829027: drop old backends (Closed) Base URL: https://chromedevtools.googlecode.com/svn/trunk
Patch Set: Created 7 years, 11 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: plugins/org.chromium.sdk.wipbackend.wk120709/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/runtime/CallFunctionOnParams.java
diff --git a/plugins/org.chromium.sdk.wipbackend.wk120709/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/runtime/CallFunctionOnParams.java b/plugins/org.chromium.sdk.wipbackend.wk120709/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/runtime/CallFunctionOnParams.java
deleted file mode 100644
index 66f5922d07d48f1374e27c1aa229577cb46f2b84..0000000000000000000000000000000000000000
--- a/plugins/org.chromium.sdk.wipbackend.wk120709/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/runtime/CallFunctionOnParams.java
+++ /dev/null
@@ -1,42 +0,0 @@
-// Generated source.
-// Generator: org.chromium.sdk.internal.wip.tools.protocolgenerator.Generator
-// Origin: http://svn.webkit.org/repository/webkit/trunk/Source/WebCore/inspector/Inspector.json@114632
-
-package org.chromium.sdk.internal.wip.protocol.output.runtime;
-
-/**
-Calls function with given declaration on the given object. Object group of the result is inherited from the target object.
- */
-public class CallFunctionOnParams extends org.chromium.sdk.internal.wip.protocol.output.WipParamsWithResponse<org.chromium.sdk.internal.wip.protocol.input.runtime.CallFunctionOnData> {
- /**
- @param objectId Identifier of the object to call function on.
- @param functionDeclaration Declaration of the function to call.
- @param argumentsOpt Call arguments. All call arguments must belong to the same JavaScript world as the target object.
- @param doNotPauseOnExceptionsAndMuteConsoleOpt Specifies whether function call should stop on exceptions and mute console. Overrides setPauseOnException state.
- @param returnByValueOpt Whether the result is expected to be a JSON object which should be sent by value.
- */
- public CallFunctionOnParams(String/*See org.chromium.sdk.internal.wip.protocol.common.runtime.RemoteObjectIdTypedef*/ objectId, String functionDeclaration, java.util.List<org.chromium.sdk.internal.wip.protocol.output.runtime.CallArgumentParam> argumentsOpt, Boolean doNotPauseOnExceptionsAndMuteConsoleOpt, Boolean returnByValueOpt) {
- this.put("objectId", objectId);
- this.put("functionDeclaration", functionDeclaration);
- if (argumentsOpt != null) {
- this.put("arguments", argumentsOpt);
- }
- if (doNotPauseOnExceptionsAndMuteConsoleOpt != null) {
- this.put("doNotPauseOnExceptionsAndMuteConsole", doNotPauseOnExceptionsAndMuteConsoleOpt);
- }
- if (returnByValueOpt != null) {
- this.put("returnByValue", returnByValueOpt);
- }
- }
-
- public static final String METHOD_NAME = org.chromium.sdk.internal.wip.protocol.BasicConstants.Domain.RUNTIME + ".callFunctionOn";
-
- @Override protected String getRequestName() {
- return METHOD_NAME;
- }
-
- @Override public org.chromium.sdk.internal.wip.protocol.input.runtime.CallFunctionOnData parseResponse(org.chromium.sdk.internal.wip.protocol.input.WipCommandResponse.Data data, org.chromium.sdk.internal.wip.protocol.input.WipGeneratedParserRoot parser) throws org.chromium.sdk.internal.protocolparser.JsonProtocolParseException {
- return parser.parseRuntimeCallFunctionOnData(data.getUnderlyingObject());
- }
-
-}

Powered by Google App Engine
This is Rietveld 408576698