OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights | 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights |
3 * reserved. | 3 * reserved. |
4 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 4 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
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 30 matching lines...) Expand all Loading... |
41 #include "core/html/track/TextTrackKindUserPreference.h" | 41 #include "core/html/track/TextTrackKindUserPreference.h" |
42 #include "core/loader/FrameLoaderTypes.h" | 42 #include "core/loader/FrameLoaderTypes.h" |
43 #include "platform/Timer.h" | 43 #include "platform/Timer.h" |
44 #include "platform/fonts/GenericFontFamilySettings.h" | 44 #include "platform/fonts/GenericFontFamilySettings.h" |
45 #include "platform/geometry/IntSize.h" | 45 #include "platform/geometry/IntSize.h" |
46 #include "platform/graphics/ImageAnimationPolicy.h" | 46 #include "platform/graphics/ImageAnimationPolicy.h" |
47 #include "platform/weborigin/KURL.h" | 47 #include "platform/weborigin/KURL.h" |
48 #include "public/platform/PointerProperties.h" | 48 #include "public/platform/PointerProperties.h" |
49 #include "public/platform/WebDisplayMode.h" | 49 #include "public/platform/WebDisplayMode.h" |
50 #include "public/platform/WebViewportStyle.h" | 50 #include "public/platform/WebViewportStyle.h" |
| 51 #include "public/web/WebDataSaverFlag.h" |
51 | 52 |
52 namespace blink { | 53 namespace blink { |
53 | 54 |
54 class CORE_EXPORT Settings { | 55 class CORE_EXPORT Settings { |
55 WTF_MAKE_NONCOPYABLE(Settings); | 56 WTF_MAKE_NONCOPYABLE(Settings); |
56 USING_FAST_MALLOC(Settings); | 57 USING_FAST_MALLOC(Settings); |
57 | 58 |
58 public: | 59 public: |
59 static std::unique_ptr<Settings> Create(); | 60 static std::unique_ptr<Settings> Create(); |
60 | 61 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 GenericFontFamilySettings generic_font_family_settings_; | 94 GenericFontFamilySettings generic_font_family_settings_; |
94 IntSize text_autosizing_window_size_override_; | 95 IntSize text_autosizing_window_size_override_; |
95 bool text_autosizing_enabled_ : 1; | 96 bool text_autosizing_enabled_ : 1; |
96 | 97 |
97 SETTINGS_MEMBER_VARIABLES | 98 SETTINGS_MEMBER_VARIABLES |
98 }; | 99 }; |
99 | 100 |
100 } // namespace blink | 101 } // namespace blink |
101 | 102 |
102 #endif // Settings_h | 103 #endif // Settings_h |
OLD | NEW |