| 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 16 matching lines...) Expand all Loading... |
| 27 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 27 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 28 * Boston, MA 02110-1301, USA. | 28 * Boston, MA 02110-1301, USA. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "core/css/CSSDefaultStyleSheets.h" | 31 #include "core/css/CSSDefaultStyleSheets.h" |
| 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" | |
| 38 #include "core/html/HTMLAnchorElement.h" | 37 #include "core/html/HTMLAnchorElement.h" |
| 39 #include "core/html/HTMLHtmlElement.h" | 38 #include "core/html/HTMLHtmlElement.h" |
| 40 #include "core/layout/LayoutTheme.h" | 39 #include "core/layout/LayoutTheme.h" |
| 41 #include "platform/PlatformResourceLoader.h" | 40 #include "platform/PlatformResourceLoader.h" |
| 42 #include "platform/wtf/LeakAnnotations.h" | 41 #include "platform/wtf/LeakAnnotations.h" |
| 43 | 42 |
| 44 namespace blink { | 43 namespace blink { |
| 45 | 44 |
| 46 using namespace HTMLNames; | 45 using namespace HTMLNames; |
| 47 | 46 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 visitor->Trace(television_viewport_style_sheet_); | 194 visitor->Trace(television_viewport_style_sheet_); |
| 196 visitor->Trace(xhtml_mobile_profile_style_sheet_); | 195 visitor->Trace(xhtml_mobile_profile_style_sheet_); |
| 197 visitor->Trace(quirks_style_sheet_); | 196 visitor->Trace(quirks_style_sheet_); |
| 198 visitor->Trace(svg_style_sheet_); | 197 visitor->Trace(svg_style_sheet_); |
| 199 visitor->Trace(mathml_style_sheet_); | 198 visitor->Trace(mathml_style_sheet_); |
| 200 visitor->Trace(media_controls_style_sheet_); | 199 visitor->Trace(media_controls_style_sheet_); |
| 201 visitor->Trace(fullscreen_style_sheet_); | 200 visitor->Trace(fullscreen_style_sheet_); |
| 202 } | 201 } |
| 203 | 202 |
| 204 } // namespace blink | 203 } // namespace blink |
| OLD | NEW |