OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 #include "sky/engine/core/loader/FrameLoaderTypes.h" | 43 #include "sky/engine/core/loader/FrameLoaderTypes.h" |
44 #include "sky/engine/core/loader/NavigationPolicy.h" | 44 #include "sky/engine/core/loader/NavigationPolicy.h" |
45 #include "sky/engine/core/page/PageVisibilityState.h" | 45 #include "sky/engine/core/page/PageVisibilityState.h" |
46 #include "sky/engine/core/rendering/style/RenderStyleConstants.h" | 46 #include "sky/engine/core/rendering/style/RenderStyleConstants.h" |
47 #include "sky/engine/platform/Cursor.h" | 47 #include "sky/engine/platform/Cursor.h" |
48 #include "sky/engine/platform/fonts/FontDescription.h" | 48 #include "sky/engine/platform/fonts/FontDescription.h" |
49 #include "sky/engine/platform/fonts/FontSmoothingMode.h" | 49 #include "sky/engine/platform/fonts/FontSmoothingMode.h" |
50 #include "sky/engine/platform/graphics/filters/FilterOperation.h" | 50 #include "sky/engine/platform/graphics/filters/FilterOperation.h" |
51 #include "sky/engine/platform/network/ResourceLoadPriority.h" | 51 #include "sky/engine/platform/network/ResourceLoadPriority.h" |
52 #include "sky/engine/platform/network/ResourceResponse.h" | 52 #include "sky/engine/platform/network/ResourceResponse.h" |
53 #include "sky/engine/platform/scroll/ScrollTypes.h" | |
54 #include "sky/engine/platform/text/TextChecking.h" | 53 #include "sky/engine/platform/text/TextChecking.h" |
55 #include "sky/engine/platform/text/TextDecoration.h" | 54 #include "sky/engine/platform/text/TextDecoration.h" |
56 #include "sky/engine/platform/weborigin/ReferrerPolicy.h" | 55 #include "sky/engine/platform/weborigin/ReferrerPolicy.h" |
57 #include "sky/engine/public/platform/WebClipboard.h" | 56 #include "sky/engine/public/platform/WebClipboard.h" |
58 #include "sky/engine/public/platform/WebCursorInfo.h" | 57 #include "sky/engine/public/platform/WebCursorInfo.h" |
59 #include "sky/engine/public/platform/WebInputEvent.h" | 58 #include "sky/engine/public/platform/WebInputEvent.h" |
60 #include "sky/engine/public/platform/WebReferrerPolicy.h" | 59 #include "sky/engine/public/platform/WebReferrerPolicy.h" |
61 #include "sky/engine/public/platform/WebURLRequest.h" | 60 #include "sky/engine/public/platform/WebURLRequest.h" |
62 #include "sky/engine/public/platform/WebURLResponse.h" | 61 #include "sky/engine/public/platform/WebURLResponse.h" |
63 #include "sky/engine/public/web/WebConsoleMessage.h" | 62 #include "sky/engine/public/web/WebConsoleMessage.h" |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsCode, V8CacheOptionsCode
); | 211 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsCode, V8CacheOptionsCode
); |
213 | 212 |
214 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeNone, PointerTypeNone); | 213 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeNone, PointerTypeNone); |
215 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeCoarse, PointerTypeCoarse); | 214 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeCoarse, PointerTypeCoarse); |
216 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeFine, PointerTypeFine); | 215 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeFine, PointerTypeFine); |
217 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeNone, HoverTypeNone); | 216 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeNone, HoverTypeNone); |
218 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeOnDemand, HoverTypeOnDemand); | 217 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeOnDemand, HoverTypeOnDemand); |
219 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeHover, HoverTypeHover); | 218 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeHover, HoverTypeHover); |
220 | 219 |
221 } // namespace blink | 220 } // namespace blink |
OLD | NEW |