| 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 17 matching lines...) Expand all Loading... |
| 28 #define InternalSettings_h | 28 #define InternalSettings_h |
| 29 | 29 |
| 30 #include "core/editing/EditingBehaviorTypes.h" | 30 #include "core/editing/EditingBehaviorTypes.h" |
| 31 #include "core/page/Page.h" | 31 #include "core/page/Page.h" |
| 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/PassRefPtr.h" | |
| 39 #include "wtf/RefCounted.h" | |
| 40 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
| 41 | 39 |
| 42 namespace blink { | 40 namespace blink { |
| 43 | 41 |
| 44 class Document; | 42 class Document; |
| 45 class ExceptionState; | 43 class ExceptionState; |
| 46 class LocalFrame; | 44 class LocalFrame; |
| 47 class Page; | 45 class Page; |
| 48 class Settings; | 46 class Settings; |
| 49 | 47 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 Page* page() const { return m_page; } | 136 Page* page() const { return m_page; } |
| 139 static const char* supplementName(); | 137 static const char* supplementName(); |
| 140 | 138 |
| 141 WeakMember<Page> m_page; | 139 WeakMember<Page> m_page; |
| 142 Backup m_backup; | 140 Backup m_backup; |
| 143 }; | 141 }; |
| 144 | 142 |
| 145 } // namespace blink | 143 } // namespace blink |
| 146 | 144 |
| 147 #endif // InternalSettings_h | 145 #endif // InternalSettings_h |
| OLD | NEW |