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

Side by Side Diff: Source/WebCore/css/StyleSheetContents.cpp

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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2006, 2007, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2006, 2007, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 case StyleRuleBase::Keyframes: 455 case StyleRuleBase::Keyframes:
456 case StyleRuleBase::Unknown: 456 case StyleRuleBase::Unknown:
457 case StyleRuleBase::Charset: 457 case StyleRuleBase::Charset:
458 case StyleRuleBase::Keyframe: 458 case StyleRuleBase::Keyframe:
459 #if ENABLE(CSS3_CONDITIONAL_RULES) 459 #if ENABLE(CSS3_CONDITIONAL_RULES)
460 case StyleRuleBase::Supports: 460 case StyleRuleBase::Supports:
461 #endif 461 #endif
462 #if ENABLE(CSS_DEVICE_ADAPTATION) 462 #if ENABLE(CSS_DEVICE_ADAPTATION)
463 case StyleRuleBase::Viewport: 463 case StyleRuleBase::Viewport:
464 #endif 464 #endif
465 #if ENABLE(CSS_SHADERS)
466 case StyleRuleBase::Filter: 465 case StyleRuleBase::Filter:
467 #endif
468 break; 466 break;
469 } 467 }
470 } 468 }
471 return false; 469 return false;
472 } 470 }
473 471
474 bool StyleSheetContents::hasFailedOrCanceledSubresources() const 472 bool StyleSheetContents::hasFailedOrCanceledSubresources() const
475 { 473 {
476 ASSERT(isCacheable()); 474 ASSERT(isCacheable());
477 return childRulesHaveFailedOrCanceledSubresources(m_childRules); 475 return childRulesHaveFailedOrCanceledSubresources(m_childRules);
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 info.addMember(m_originalURL, "originalURL"); 520 info.addMember(m_originalURL, "originalURL");
523 info.addMember(m_encodingFromCharsetRule, "encodingFromCharsetRule"); 521 info.addMember(m_encodingFromCharsetRule, "encodingFromCharsetRule");
524 info.addMember(m_importRules, "importRules"); 522 info.addMember(m_importRules, "importRules");
525 info.addMember(m_childRules, "childRules"); 523 info.addMember(m_childRules, "childRules");
526 info.addMember(m_namespaces, "namespaces"); 524 info.addMember(m_namespaces, "namespaces");
527 info.addMember(m_parserContext, "parserContext"); 525 info.addMember(m_parserContext, "parserContext");
528 info.addMember(m_clients, "clients"); 526 info.addMember(m_clients, "clients");
529 } 527 }
530 528
531 } 529 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698