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

Side by Side Diff: Source/WebCore/page/DOMWindow.idl

Issue 13497009: Remove ENABLE(FILE_SYSTEM) compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 attribute SVGFESpecularLightingElementConstructor SVGFESpecularLightingEleme nt; 776 attribute SVGFESpecularLightingElementConstructor SVGFESpecularLightingEleme nt;
777 attribute SVGFESpotLightElementConstructor SVGFESpotLightElement; 777 attribute SVGFESpotLightElementConstructor SVGFESpotLightElement;
778 attribute SVGFETileElementConstructor SVGFETileElement; 778 attribute SVGFETileElementConstructor SVGFETileElement;
779 attribute SVGFETurbulenceElementConstructor SVGFETurbulenceElement; 779 attribute SVGFETurbulenceElementConstructor SVGFETurbulenceElement;
780 attribute SVGFilterElementConstructor SVGFilterElement; 780 attribute SVGFilterElementConstructor SVGFilterElement;
781 #endif 781 #endif
782 #endif 782 #endif
783 783
784 attribute DOMFormDataConstructor FormData; 784 attribute DOMFormDataConstructor FormData;
785 785
786 [Conditional=BLOB|FILE_SYSTEM] attribute FileErrorConstructor FileError; 786 [Conditional=BLOB] attribute FileErrorConstructor FileError;
tkent 2013/04/08 09:41:24 Ditto.
kinuko 2013/04/08 10:42:33 Done.
787 [Conditional=BLOB] attribute FileReaderConstructor FileReader; 787 [Conditional=BLOB] attribute FileReaderConstructor FileReader;
788 788
789 [Conditional=BLOB] attribute DOMURLConstructor URL; 789 [Conditional=BLOB] attribute DOMURLConstructor URL;
790 [Conditional=BLOB] attribute DOMURLConstructor webkitURL; // FIXME: deprecat e this. 790 [Conditional=BLOB] attribute DOMURLConstructor webkitURL; // FIXME: deprecat e this.
791 791
792 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add metrics to determine when we can remove this. 792 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add metrics to determine when we can remove this.
793 attribute MutationObserverConstructor MutationObserver; 793 attribute MutationObserverConstructor MutationObserver;
794 794
795 [V8EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMedi aSource; 795 [V8EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMedi aSource;
796 [V8EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSou rceBuffer; 796 [V8EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSou rceBuffer;
797 [V8EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKi tSourceBufferList; 797 [V8EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKi tSourceBufferList;
798 798
799 #endif // defined(LANGUAGE_JAVASCRIPT) 799 #endif // defined(LANGUAGE_JAVASCRIPT)
800 800
801 #if defined(V8_BINDING) && V8_BINDING 801 #if defined(V8_BINDING) && V8_BINDING
802 // window.toString() requires special handling in V8 802 // window.toString() requires special handling in V8
803 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString toString(); 803 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString toString();
804 #endif // defined(V8_BINDING) 804 #endif // defined(V8_BINDING)
805 }; 805 };
806 806
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698