| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 #include "public/platform/WebScrollbar.h" | 61 #include "public/platform/WebScrollbar.h" |
| 62 #include "public/platform/WebScrollbarBehavior.h" | 62 #include "public/platform/WebScrollbarBehavior.h" |
| 63 #include "public/platform/WebURLRequest.h" | 63 #include "public/platform/WebURLRequest.h" |
| 64 #include "public/platform/WebURLResponse.h" | 64 #include "public/platform/WebURLResponse.h" |
| 65 #include "public/web/WebConsoleMessage.h" | 65 #include "public/web/WebConsoleMessage.h" |
| 66 #include "public/web/WebFontDescription.h" | 66 #include "public/web/WebFontDescription.h" |
| 67 #include "public/web/WebInputEvent.h" | 67 #include "public/web/WebInputEvent.h" |
| 68 #include "public/web/WebNavigationPolicy.h" | 68 #include "public/web/WebNavigationPolicy.h" |
| 69 #include "public/web/WebNavigatorContentUtilsClient.h" | 69 #include "public/web/WebNavigatorContentUtilsClient.h" |
| 70 #include "public/web/WebNode.h" | 70 #include "public/web/WebNode.h" |
| 71 #include "public/web/WebPageVisibilityState.h" | |
| 72 #include "public/web/WebSerializedScriptValueVersion.h" | |
| 73 #include "public/web/WebSettings.h" | 71 #include "public/web/WebSettings.h" |
| 74 #include "public/web/WebTextAffinity.h" | 72 #include "public/web/WebTextAffinity.h" |
| 75 #include "public/web/WebTextCheckingResult.h" | 73 #include "public/web/WebTextCheckingResult.h" |
| 76 #include "public/web/WebTextCheckingType.h" | 74 #include "public/web/WebTextCheckingType.h" |
| 77 #include "public/web/WebTextDecorationType.h" | 75 #include "public/web/WebTextDecorationType.h" |
| 78 #include "public/web/WebTouchAction.h" | 76 #include "public/web/WebTouchAction.h" |
| 79 #include "public/web/WebView.h" | 77 #include "public/web/WebView.h" |
| 80 #include "wtf/Assertions.h" | 78 #include "wtf/Assertions.h" |
| 81 #include "wtf/text/StringImpl.h" | 79 #include "wtf/text/StringImpl.h" |
| 82 | 80 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsParse, V8CacheOptionsPar
se); | 246 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsParse, V8CacheOptionsPar
se); |
| 249 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsCode, V8CacheOptionsCode
); | 247 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsCode, V8CacheOptionsCode
); |
| 250 | 248 |
| 251 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeNone, PointerTypeNone); | 249 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeNone, PointerTypeNone); |
| 252 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeCoarse, PointerTypeCoarse); | 250 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeCoarse, PointerTypeCoarse); |
| 253 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeFine, PointerTypeFine); | 251 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeFine, PointerTypeFine); |
| 254 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeNone, HoverTypeNone); | 252 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeNone, HoverTypeNone); |
| 255 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeOnDemand, HoverTypeOnDemand); | 253 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeOnDemand, HoverTypeOnDemand); |
| 256 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeHover, HoverTypeHover); | 254 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeHover, HoverTypeHover); |
| 257 | 255 |
| 258 COMPILE_ASSERT_MATCHING_UINT64(kSerializedScriptValueVersion, SerializedScriptVa
lue::wireFormatVersion); | |
| 259 | |
| 260 } // namespace blink | 256 } // namespace blink |
| OLD | NEW |