| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 bool userHasCaptionPreferences(); | 112 bool userHasCaptionPreferences(); |
| 113 float captionFontSizeScale(); | 113 float captionFontSizeScale(); |
| 114 void registerForCaptionPreferencesChangedCallbacks(CaptionPreferencesCha
ngedListener*); | 114 void registerForCaptionPreferencesChangedCallbacks(CaptionPreferencesCha
ngedListener*); |
| 115 void unregisterForCaptionPreferencesChangedCallbacks(CaptionPreferencesC
hangedListener*); | 115 void unregisterForCaptionPreferencesChangedCallbacks(CaptionPreferencesC
hangedListener*); |
| 116 #endif | 116 #endif |
| 117 | 117 |
| 118 private: | 118 private: |
| 119 PageGroup(Page*); | 119 PageGroup(Page*); |
| 120 | 120 |
| 121 void addVisitedLink(LinkHash stringHash); | 121 void addVisitedLink(LinkHash stringHash); |
| 122 void resetUserStyleCacheInAllFrames(); | 122 void invalidatedInjectedStyleSheetCacheInAllFrames(); |
| 123 | 123 |
| 124 #if ENABLE(VIDEO_TRACK) | 124 #if ENABLE(VIDEO_TRACK) |
| 125 CaptionUserPreferences* captionPreferences(); | 125 CaptionUserPreferences* captionPreferences(); |
| 126 #endif | 126 #endif |
| 127 String m_name; | 127 String m_name; |
| 128 | 128 |
| 129 HashSet<Page*> m_pages; | 129 HashSet<Page*> m_pages; |
| 130 | 130 |
| 131 HashSet<LinkHash, LinkHashHash> m_visitedLinkHashes; | 131 HashSet<LinkHash, LinkHashHash> m_visitedLinkHashes; |
| 132 bool m_visitedLinksPopulated; | 132 bool m_visitedLinksPopulated; |
| 133 | 133 |
| 134 unsigned m_identifier; | 134 unsigned m_identifier; |
| 135 RefPtr<StorageNamespace> m_localStorage; | 135 RefPtr<StorageNamespace> m_localStorage; |
| 136 | 136 |
| 137 OwnPtr<UserScriptMap> m_userScripts; | 137 OwnPtr<UserScriptMap> m_userScripts; |
| 138 OwnPtr<UserStyleSheetMap> m_userStyleSheets; | 138 OwnPtr<UserStyleSheetMap> m_userStyleSheets; |
| 139 | 139 |
| 140 OwnPtr<GroupSettings> m_groupSettings; | 140 OwnPtr<GroupSettings> m_groupSettings; |
| 141 | 141 |
| 142 #if ENABLE(VIDEO_TRACK) | 142 #if ENABLE(VIDEO_TRACK) |
| 143 OwnPtr<CaptionUserPreferences> m_captionPreferences; | 143 OwnPtr<CaptionUserPreferences> m_captionPreferences; |
| 144 #endif | 144 #endif |
| 145 }; | 145 }; |
| 146 | 146 |
| 147 } // namespace WebCore | 147 } // namespace WebCore |
| 148 | 148 |
| 149 #endif // PageGroup_h | 149 #endif // PageGroup_h |
| OLD | NEW |