| 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 15 matching lines...) Expand all Loading... |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "PageGroup.h" | 27 #include "PageGroup.h" |
| 28 | 28 |
| 29 #include "CaptionUserPreferences.h" | 29 #include "CaptionUserPreferences.h" |
| 30 #include "Document.h" | 30 #include "Document.h" |
| 31 #include "DocumentStyleSheetCollection.h" | 31 #include "DocumentStyleSheetCollection.h" |
| 32 #include "Frame.h" | 32 #include "Frame.h" |
| 33 #include "GroupSettings.h" | 33 #include "GroupSettings.h" |
| 34 #include "Page.h" | 34 #include "Page.h" |
| 35 #include "Settings.h" | 35 #include "Settings.h" |
| 36 #include "StorageNamespace.h" | 36 #include "core/storage/StorageNamespace.h" |
| 37 | 37 |
| 38 namespace WebCore { | 38 namespace WebCore { |
| 39 | 39 |
| 40 PageGroup::PageGroup() | 40 PageGroup::PageGroup() |
| 41 : m_groupSettings(GroupSettings::create()) | 41 : m_groupSettings(GroupSettings::create()) |
| 42 { | 42 { |
| 43 } | 43 } |
| 44 | 44 |
| 45 PageGroup::~PageGroup() | 45 PageGroup::~PageGroup() |
| 46 { | 46 { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 CaptionUserPreferences* PageGroup::captionPreferences() | 114 CaptionUserPreferences* PageGroup::captionPreferences() |
| 115 { | 115 { |
| 116 if (!m_captionPreferences) | 116 if (!m_captionPreferences) |
| 117 m_captionPreferences = CaptionUserPreferences::create(this); | 117 m_captionPreferences = CaptionUserPreferences::create(this); |
| 118 | 118 |
| 119 return m_captionPreferences.get(); | 119 return m_captionPreferences.get(); |
| 120 } | 120 } |
| 121 | 121 |
| 122 | 122 |
| 123 } // namespace WebCore | 123 } // namespace WebCore |
| OLD | NEW |