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

Unified Diff: Source/core/frame/Navigator.idl

Issue 1180653003: Sync the IDL interfaces in core/frame/ with their many specs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix order-dependent test Created 5 years, 6 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
« no previous file with comments | « Source/core/frame/Location.idl ('k') | Source/core/frame/NavigatorCPU.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Navigator.idl
diff --git a/Source/core/frame/Navigator.idl b/Source/core/frame/Navigator.idl
index b6e566a6a028592b05b37b88e8b6941b6fec3201..d9665b060ac98febe789166745bafdc6766b492b 100644
--- a/Source/core/frame/Navigator.idl
+++ b/Source/core/frame/Navigator.idl
@@ -17,22 +17,25 @@
Boston, MA 02110-1301, USA.
*/
-// http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#navigator
+// https://html.spec.whatwg.org/#the-navigator-object
[
GarbageCollected,
] interface Navigator {
- readonly attribute boolean cookieEnabled; // FIXME: move to NavigatorStorageUtils
+ // objects implementing this interface also implement the interfaces given below
- void getStorageUpdates(); // FIXME: Remove this method or rename to yieldForStorageUpdates.
+ // TODO(philipj): vendorSub should be on NavigatorID.
+ [MeasureAs=NavigatorVendorSub] readonly attribute DOMString vendorSub;
- // Non-standard.
+ // TODO(philipj): productSub and vendor are not yet in the spec:
+ // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27954
[MeasureAs=NavigatorProductSub] readonly attribute DOMString productSub;
+ // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27786
[MeasureAs=NavigatorVendor] readonly attribute DOMString vendor;
- [MeasureAs=NavigatorVendorSub] readonly attribute DOMString vendorSub;
};
Navigator implements NavigatorCPU;
Navigator implements NavigatorID;
Navigator implements NavigatorLanguage;
Navigator implements NavigatorOnLine;
+Navigator implements NavigatorStorageUtils;
« no previous file with comments | « Source/core/frame/Location.idl ('k') | Source/core/frame/NavigatorCPU.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698