Index: third_party/WebKit/Source/bindings/IDLExtendedAttributes.md |
diff --git a/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md b/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md |
index 19bd445c6ac973eeee77916949191f25225f99a2..28d0e014aa7c2de5df2fe60f776eebde00878828 100644 |
--- a/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md |
+++ b/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md |
@@ -923,21 +923,6 @@ Usage: `[DeprecateAs]` can be specified on methods, attributes, and constants. |
The deprecation message show on the console can be specified via the [UseCounter::deprecationMessage](https://code.google.com/p/chromium/codesearch#chromium/src/third_party/WebKit/Source/core/frame/UseCounter.cpp&q=UseCounter::deprecationMessage&l=615) method. |
-### [GarbageCollected] _(i)_ |
- |
-Summary: The `[GarbageCollected]` attribute signals that the object is kept on the Oilpan heap and handled by its garbage collector. |
- |
-Usage: `[GarbageCollected]` can be specified on interfaces, and is inherited: |
- |
-```webidl |
-[ |
- GarbageCollected, |
-] interface BatteryManager { ... }; |
-``` |
- |
-In order to generate correct binding layer code for an interface, `[GarbageCollected]` must be supplied if the object is an Oilpan-based object. |
- |
- |
### [Iterable] _(i)_ |
Summary: Installs a @@iterator method. |