| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "core/testing/InternalSettingsGenerated.h" | 32 #include "core/testing/InternalSettingsGenerated.h" |
| 33 #include "platform/geometry/IntSize.h" | 33 #include "platform/geometry/IntSize.h" |
| 34 #include "platform/graphics/ImageAnimationPolicy.h" | 34 #include "platform/graphics/ImageAnimationPolicy.h" |
| 35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "public/platform/WebDisplayMode.h" | 36 #include "public/platform/WebDisplayMode.h" |
| 37 #include "wtf/Allocator.h" | 37 #include "wtf/Allocator.h" |
| 38 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class Document; | |
| 43 class ExceptionState; | 42 class ExceptionState; |
| 44 class LocalFrame; | |
| 45 class Page; | 43 class Page; |
| 46 class Settings; | 44 class Settings; |
| 47 | 45 |
| 48 class InternalSettings final : public InternalSettingsGenerated, | 46 class InternalSettings final : public InternalSettingsGenerated, |
| 49 public Supplement<Page> { | 47 public Supplement<Page> { |
| 50 USING_GARBAGE_COLLECTED_MIXIN(InternalSettings); | 48 USING_GARBAGE_COLLECTED_MIXIN(InternalSettings); |
| 51 DEFINE_WRAPPERTYPEINFO(); | 49 DEFINE_WRAPPERTYPEINFO(); |
| 52 | 50 |
| 53 public: | 51 public: |
| 54 class Backup { | 52 class Backup { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 Page* page() const { return m_page; } | 152 Page* page() const { return m_page; } |
| 155 static const char* supplementName(); | 153 static const char* supplementName(); |
| 156 | 154 |
| 157 WeakMember<Page> m_page; | 155 WeakMember<Page> m_page; |
| 158 Backup m_backup; | 156 Backup m_backup; |
| 159 }; | 157 }; |
| 160 | 158 |
| 161 } // namespace blink | 159 } // namespace blink |
| 162 | 160 |
| 163 #endif // InternalSettings_h | 161 #endif // InternalSettings_h |
| OLD | NEW |