| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. |
| 4 * All rights reserved. | 4 * All rights reserved. |
| 5 * Copyright (C) 2013 Google Inc. All rights reserved. | 5 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 StyleSheetContents* defaultStyleSheet() { return m_defaultStyleSheet.get(); } | 54 StyleSheetContents* defaultStyleSheet() { return m_defaultStyleSheet.get(); } |
| 55 StyleSheetContents* quirksStyleSheet() { return m_quirksStyleSheet.get(); } | 55 StyleSheetContents* quirksStyleSheet() { return m_quirksStyleSheet.get(); } |
| 56 StyleSheetContents* svgStyleSheet() { return m_svgStyleSheet.get(); } | 56 StyleSheetContents* svgStyleSheet() { return m_svgStyleSheet.get(); } |
| 57 StyleSheetContents* mathmlStyleSheet() { return m_mathmlStyleSheet.get(); } | 57 StyleSheetContents* mathmlStyleSheet() { return m_mathmlStyleSheet.get(); } |
| 58 StyleSheetContents* mediaControlsStyleSheet() { | 58 StyleSheetContents* mediaControlsStyleSheet() { |
| 59 return m_mediaControlsStyleSheet.get(); | 59 return m_mediaControlsStyleSheet.get(); |
| 60 } | 60 } |
| 61 StyleSheetContents* fullscreenStyleSheet() { | 61 StyleSheetContents* fullscreenStyleSheet() { |
| 62 return m_fullscreenStyleSheet.get(); | 62 return m_fullscreenStyleSheet.get(); |
| 63 } | 63 } |
| 64 StyleSheetContents* slotStyleSheet() { return m_slotStyleSheet.get(); } |
| 64 | 65 |
| 65 DECLARE_TRACE(); | 66 DECLARE_TRACE(); |
| 66 | 67 |
| 67 private: | 68 private: |
| 68 CSSDefaultStyleSheets(); | 69 CSSDefaultStyleSheets(); |
| 69 | 70 |
| 70 Member<RuleSet> m_defaultStyle; | 71 Member<RuleSet> m_defaultStyle; |
| 71 Member<RuleSet> m_defaultQuirksStyle; | 72 Member<RuleSet> m_defaultQuirksStyle; |
| 72 Member<RuleSet> m_defaultPrintStyle; | 73 Member<RuleSet> m_defaultPrintStyle; |
| 73 Member<RuleSet> m_defaultViewSourceStyle; | 74 Member<RuleSet> m_defaultViewSourceStyle; |
| 74 | 75 |
| 75 Member<StyleSheetContents> m_defaultStyleSheet; | 76 Member<StyleSheetContents> m_defaultStyleSheet; |
| 76 Member<StyleSheetContents> m_mobileViewportStyleSheet; | 77 Member<StyleSheetContents> m_mobileViewportStyleSheet; |
| 77 Member<StyleSheetContents> m_televisionViewportStyleSheet; | 78 Member<StyleSheetContents> m_televisionViewportStyleSheet; |
| 78 Member<StyleSheetContents> m_xhtmlMobileProfileStyleSheet; | 79 Member<StyleSheetContents> m_xhtmlMobileProfileStyleSheet; |
| 79 Member<StyleSheetContents> m_quirksStyleSheet; | 80 Member<StyleSheetContents> m_quirksStyleSheet; |
| 80 Member<StyleSheetContents> m_svgStyleSheet; | 81 Member<StyleSheetContents> m_svgStyleSheet; |
| 81 Member<StyleSheetContents> m_mathmlStyleSheet; | 82 Member<StyleSheetContents> m_mathmlStyleSheet; |
| 82 Member<StyleSheetContents> m_mediaControlsStyleSheet; | 83 Member<StyleSheetContents> m_mediaControlsStyleSheet; |
| 83 Member<StyleSheetContents> m_fullscreenStyleSheet; | 84 Member<StyleSheetContents> m_fullscreenStyleSheet; |
| 85 Member<StyleSheetContents> m_slotStyleSheet; |
| 84 }; | 86 }; |
| 85 | 87 |
| 86 } // namespace blink | 88 } // namespace blink |
| 87 | 89 |
| 88 #endif // CSSDefaultStyleSheets_h | 90 #endif // CSSDefaultStyleSheets_h |
| OLD | NEW |