| 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 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #ifndef InternalSettings_h | 27 #ifndef InternalSettings_h |
| 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 "platform/wtf/Allocator.h" |
| 37 #include "platform/wtf/text/WTFString.h" |
| 36 #include "public/platform/WebDisplayMode.h" | 38 #include "public/platform/WebDisplayMode.h" |
| 37 #include "wtf/Allocator.h" | |
| 38 #include "wtf/text/WTFString.h" | |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class ExceptionState; | 42 class ExceptionState; |
| 43 class Page; | 43 class Page; |
| 44 class Settings; | 44 class Settings; |
| 45 | 45 |
| 46 class InternalSettings final : public InternalSettingsGenerated, | 46 class InternalSettings final : public InternalSettingsGenerated, |
| 47 public Supplement<Page> { | 47 public Supplement<Page> { |
| 48 USING_GARBAGE_COLLECTED_MIXIN(InternalSettings); | 48 USING_GARBAGE_COLLECTED_MIXIN(InternalSettings); |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 Settings* GetSettings() const; | 152 Settings* GetSettings() const; |
| 153 Page* GetPage() const { return GetSupplementable(); } | 153 Page* GetPage() const { return GetSupplementable(); } |
| 154 static const char* SupplementName(); | 154 static const char* SupplementName(); |
| 155 | 155 |
| 156 Backup backup_; | 156 Backup backup_; |
| 157 }; | 157 }; |
| 158 | 158 |
| 159 } // namespace blink | 159 } // namespace blink |
| 160 | 160 |
| 161 #endif // InternalSettings_h | 161 #endif // InternalSettings_h |
| OLD | NEW |