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

Side by Side Diff: Source/core/frame/Window.idl

Issue 206033004: Unguard Shadow DOM features. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/events/EventPath.cpp ('k') | Source/core/html/HTMLShadowElement.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 [RuntimeEnabled=ScriptedSpeech] attribute SpeechGrammarListConstructor webki tSpeechGrammarList; 226 [RuntimeEnabled=ScriptedSpeech] attribute SpeechGrammarListConstructor webki tSpeechGrammarList;
227 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionConstructor webki tSpeechRecognition; 227 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionConstructor webki tSpeechRecognition;
228 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionErrorConstructor webkitSpeechRecognitionError; 228 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionErrorConstructor webkitSpeechRecognitionError;
229 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionEventConstructor webkitSpeechRecognitionEvent; 229 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionEventConstructor webkitSpeechRecognitionEvent;
230 [Conditional=WEB_AUDIO] attribute PannerNodeConstructor webkitAudioPannerNod e; 230 [Conditional=WEB_AUDIO] attribute PannerNodeConstructor webkitAudioPannerNod e;
231 231
232 // Prefixed ShadowRoot constructor should be phased out eventually, but for the moment it must be always exposed. 232 // Prefixed ShadowRoot constructor should be phased out eventually, but for the moment it must be always exposed.
233 // Unprefixed ShadowRoot constructor should be visible when the feature flag is enabled. 233 // Unprefixed ShadowRoot constructor should be visible when the feature flag is enabled.
234 // FIXME: When it's ready to remove WebKitShadowRoot, get rid of both constr uctors from Window.idl and remove 234 // FIXME: When it's ready to remove WebKitShadowRoot, get rid of both constr uctors from Window.idl and remove
235 // [NoInterfaceObject] from ShadowRoot interface definition. 235 // [NoInterfaceObject] from ShadowRoot interface definition.
236 [RuntimeEnabled=ShadowDOM] attribute ShadowRootConstructor ShadowRoot; 236 attribute ShadowRootConstructor ShadowRoot;
237 [MeasureAs=PrefixedShadowRootConstructor] attribute ShadowRootConstructor We bKitShadowRoot; 237 [MeasureAs=PrefixedShadowRootConstructor] attribute ShadowRootConstructor We bKitShadowRoot;
238 238
239 // window.toString() requires special handling in V8 239 // window.toString() requires special handling in V8
240 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 240 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
241 241
242 [NotEnumerable] getter Window (unsigned long index); 242 [NotEnumerable] getter Window (unsigned long index);
243 [Custom, NotEnumerable] getter Window (DOMString name); 243 [Custom, NotEnumerable] getter Window (DOMString name);
244 }; 244 };
245 245
246 Window implements GlobalEventHandlers; 246 Window implements GlobalEventHandlers;
247 Window implements ImageBitmapFactories; 247 Window implements ImageBitmapFactories;
248 Window implements WindowBase64; 248 Window implements WindowBase64;
249 Window implements WindowEventHandlers; 249 Window implements WindowEventHandlers;
250 Window implements WindowTimers; 250 Window implements WindowTimers;
OLDNEW
« no previous file with comments | « Source/core/events/EventPath.cpp ('k') | Source/core/html/HTMLShadowElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698