| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
| 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All |
| 6 * rights reserved. | 6 * rights reserved. |
| 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 10 * (http://www.torchmobile.com/) | 10 * (http://www.torchmobile.com/) |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 #include "core/MathMLNames.h" | 33 #include "core/MathMLNames.h" |
| 34 #include "core/css/MediaQueryEvaluator.h" | 34 #include "core/css/MediaQueryEvaluator.h" |
| 35 #include "core/css/RuleSet.h" | 35 #include "core/css/RuleSet.h" |
| 36 #include "core/css/StyleSheetContents.h" | 36 #include "core/css/StyleSheetContents.h" |
| 37 #include "core/dom/Fullscreen.h" | 37 #include "core/dom/Fullscreen.h" |
| 38 #include "core/html/HTMLAnchorElement.h" | 38 #include "core/html/HTMLAnchorElement.h" |
| 39 #include "core/html/HTMLHtmlElement.h" | 39 #include "core/html/HTMLHtmlElement.h" |
| 40 #include "core/layout/LayoutTheme.h" | 40 #include "core/layout/LayoutTheme.h" |
| 41 #include "platform/PlatformResourceLoader.h" | 41 #include "platform/PlatformResourceLoader.h" |
| 42 #include "wtf/LeakAnnotations.h" | 42 #include "platform/wtf/LeakAnnotations.h" |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 using namespace HTMLNames; | 46 using namespace HTMLNames; |
| 47 | 47 |
| 48 CSSDefaultStyleSheets& CSSDefaultStyleSheets::Instance() { | 48 CSSDefaultStyleSheets& CSSDefaultStyleSheets::Instance() { |
| 49 DEFINE_STATIC_LOCAL(CSSDefaultStyleSheets, css_default_style_sheets, | 49 DEFINE_STATIC_LOCAL(CSSDefaultStyleSheets, css_default_style_sheets, |
| 50 (new CSSDefaultStyleSheets)); | 50 (new CSSDefaultStyleSheets)); |
| 51 return css_default_style_sheets; | 51 return css_default_style_sheets; |
| 52 } | 52 } |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 visitor->Trace(television_viewport_style_sheet_); | 186 visitor->Trace(television_viewport_style_sheet_); |
| 187 visitor->Trace(xhtml_mobile_profile_style_sheet_); | 187 visitor->Trace(xhtml_mobile_profile_style_sheet_); |
| 188 visitor->Trace(quirks_style_sheet_); | 188 visitor->Trace(quirks_style_sheet_); |
| 189 visitor->Trace(svg_style_sheet_); | 189 visitor->Trace(svg_style_sheet_); |
| 190 visitor->Trace(mathml_style_sheet_); | 190 visitor->Trace(mathml_style_sheet_); |
| 191 visitor->Trace(media_controls_style_sheet_); | 191 visitor->Trace(media_controls_style_sheet_); |
| 192 visitor->Trace(fullscreen_style_sheet_); | 192 visitor->Trace(fullscreen_style_sheet_); |
| 193 } | 193 } |
| 194 | 194 |
| 195 } // namespace blink | 195 } // namespace blink |
| OLD | NEW |