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

Unified Diff: plugins/org.chromium.sdk.wipbackend.wk118685/src-wip-generated/org/chromium/sdk/internal/wip/protocol/input/runtime/PropertyDescriptorValue.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.wk118685/src-wip-generated/org/chromium/sdk/internal/wip/protocol/input/runtime/PropertyDescriptorValue.java
diff --git a/plugins/org.chromium.sdk.wipbackend.wk118685/src-wip-generated/org/chromium/sdk/internal/wip/protocol/input/runtime/PropertyDescriptorValue.java b/plugins/org.chromium.sdk.wipbackend.wk118685/src-wip-generated/org/chromium/sdk/internal/wip/protocol/input/runtime/PropertyDescriptorValue.java
deleted file mode 100644
index 166511697cc713a160b832f4259d529506d7bdb8..0000000000000000000000000000000000000000
--- a/plugins/org.chromium.sdk.wipbackend.wk118685/src-wip-generated/org/chromium/sdk/internal/wip/protocol/input/runtime/PropertyDescriptorValue.java
+++ /dev/null
@@ -1,57 +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@107567
-
-package org.chromium.sdk.internal.wip.protocol.input.runtime;
-
-/**
- Object property descriptor.
- */
-@org.chromium.sdk.internal.protocolparser.JsonType
-public interface PropertyDescriptorValue {
- /**
- Property name.
- */
- String name();
-
- /**
- The value associated with the property.
- */
- @org.chromium.sdk.internal.protocolparser.JsonOptionalField
- org.chromium.sdk.internal.wip.protocol.input.runtime.RemoteObjectValue value();
-
- /**
- True if the value associated with the property may be changed (data descriptors only).
- */
- @org.chromium.sdk.internal.protocolparser.JsonOptionalField
- Boolean writable();
-
- /**
- A function which serves as a getter for the property, or <code>undefined</code> if there is no getter (accessor descriptors only).
- */
- @org.chromium.sdk.internal.protocolparser.JsonOptionalField
- org.chromium.sdk.internal.wip.protocol.input.runtime.RemoteObjectValue get();
-
- /**
- A function which serves as a setter for the property, or <code>undefined</code> if there is no setter (accessor descriptors only).
- */
- @org.chromium.sdk.internal.protocolparser.JsonOptionalField
- org.chromium.sdk.internal.wip.protocol.input.runtime.RemoteObjectValue set();
-
- /**
- True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.
- */
- boolean configurable();
-
- /**
- True if this property shows up during enumeration of the properties on the corresponding object.
- */
- boolean enumerable();
-
- /**
- True if the result was thrown during the evaluation.
- */
- @org.chromium.sdk.internal.protocolparser.JsonOptionalField
- Boolean wasThrown();
-
-}

Powered by Google App Engine
This is Rietveld 408576698