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

Unified Diff: third_party/WebKit/Source/bindings/IDLExtendedAttributes.md

Issue 2571063002: Remove Blink-in-JS (Closed)
Patch Set: Created 4 years 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/bindings/IDLExtendedAttributes.md
diff --git a/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md b/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md
index 8283c6f4c5d2b7b8be8fbb036665ed11ddbbb307..c867949821dfc7fb56d4df5c6610b355a75613eb 100644
--- a/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md
+++ b/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md
@@ -1539,22 +1539,6 @@ You need to specify `[URL]` if a given DOMString represents a URL, since getters
Only used in some HTML*ELement.idl files and one other place.
-### [NoImplHeader] _(i)_
-
-Summary: `[NoImplHeader]` indicates that a given interface does not have a corresponding header file in the impl side.
-
-Usage: `[NoImplHeader]` can be specified on any interface:
-
-```webidl
-[
- NoImplHeader,
-] interface XXX {
- ...;
-};
-```
-
-Without `[NoImplHeader]`, the IDL compiler assumes that there is XXX.h in the impl side. With `[NoImplHeader]`, you can tell the IDL compiler that there is no XXX.h. You can use `[NoImplHeader]` when all of the DOM attributes and methods of the interface are implemented in Blink-in-JS and thus don't have any C++ header file.
-
## Temporary Blink-specific IDL Extended Attributes
These extended attributes are _temporary_ and are only in use while some change is in progress. Unless you are involved with the change, you can generally ignore them, and should not use them.
@@ -1658,7 +1642,6 @@ Added to members of a partial interface definition (and implemented interfaces w
* `[PerWorldBindings]` :: interacts with `[LogActivity]`
* `[OverrideBuiltins]` :: used on named accessors
-* `[ImplementedInPrivateScript]`, `[OnlyExposedToPrivateScript]`
-------------

Powered by Google App Engine
This is Rietveld 408576698