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

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

Issue 13839016: Remove CSS_SHADERS compile-time flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT 313 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
314 // Global constructors 314 // Global constructors
315 attribute StyleSheetConstructor StyleSheet; 315 attribute StyleSheetConstructor StyleSheet;
316 attribute CSSStyleSheetConstructor CSSStyleSheet; 316 attribute CSSStyleSheetConstructor CSSStyleSheet;
317 317
318 attribute CSSValueConstructor CSSValue; 318 attribute CSSValueConstructor CSSValue;
319 attribute CSSPrimitiveValueConstructor CSSPrimitiveValue; 319 attribute CSSPrimitiveValueConstructor CSSPrimitiveValue;
320 attribute CSSValueListConstructor CSSValueList; 320 attribute CSSValueListConstructor CSSValueList;
321 attribute WebKitCSSTransformValueConstructor WebKitCSSTransformValue; 321 attribute WebKitCSSTransformValueConstructor WebKitCSSTransformValue;
322 322
323 #if defined(ENABLE_CSS_SHADERS) && ENABLE_CSS_SHADERS
324 attribute WebKitCSSFilterRuleConstructor WebKitCSSFilterRule; 323 attribute WebKitCSSFilterRuleConstructor WebKitCSSFilterRule;
325 attribute WebKitCSSMixFunctionValueConstructor WebKitCSSMixFunctionValue; 324 attribute WebKitCSSMixFunctionValueConstructor WebKitCSSMixFunctionValue;
326 #endif
327 325
328 #if defined(ENABLE_CSS_FILTERS) && ENABLE_CSS_FILTERS 326 #if defined(ENABLE_CSS_FILTERS) && ENABLE_CSS_FILTERS
329 attribute WebKitCSSFilterValueConstructor WebKitCSSFilterValue; 327 attribute WebKitCSSFilterValueConstructor WebKitCSSFilterValue;
330 #endif 328 #endif
331 329
332 #if defined(ENABLE_CSS_DEVICE_ADAPTATION) && ENABLE_CSS_DEVICE_ADAPTATION 330 #if defined(ENABLE_CSS_DEVICE_ADAPTATION) && ENABLE_CSS_DEVICE_ADAPTATION
333 attribute WebKitCSSViewportRuleConstructor WebKitCSSViewportRule; 331 attribute WebKitCSSViewportRuleConstructor WebKitCSSViewportRule;
334 #endif 332 #endif
335 333
336 attribute CSSRuleConstructor CSSRule; 334 attribute CSSRuleConstructor CSSRule;
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList; 786 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList;
789 787
790 #endif // defined(LANGUAGE_JAVASCRIPT) 788 #endif // defined(LANGUAGE_JAVASCRIPT)
791 789
792 #if defined(V8_BINDING) && V8_BINDING 790 #if defined(V8_BINDING) && V8_BINDING
793 // window.toString() requires special handling in V8 791 // window.toString() requires special handling in V8
794 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 792 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
795 #endif // defined(V8_BINDING) 793 #endif // defined(V8_BINDING)
796 }; 794 };
797 795
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698