| 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 STATIC_ASSERT_ENUM(WebAXNameFromContents, AXNameFromContents); | 387 STATIC_ASSERT_ENUM(WebAXNameFromContents, AXNameFromContents); |
| 388 STATIC_ASSERT_ENUM(WebAXNameFromPlaceholder, AXNameFromPlaceholder); | 388 STATIC_ASSERT_ENUM(WebAXNameFromPlaceholder, AXNameFromPlaceholder); |
| 389 STATIC_ASSERT_ENUM(WebAXNameFromRelatedElement, AXNameFromRelatedElement); | 389 STATIC_ASSERT_ENUM(WebAXNameFromRelatedElement, AXNameFromRelatedElement); |
| 390 STATIC_ASSERT_ENUM(WebAXNameFromValue, AXNameFromValue); | 390 STATIC_ASSERT_ENUM(WebAXNameFromValue, AXNameFromValue); |
| 391 STATIC_ASSERT_ENUM(WebAXNameFromTitle, AXNameFromTitle); | 391 STATIC_ASSERT_ENUM(WebAXNameFromTitle, AXNameFromTitle); |
| 392 | 392 |
| 393 STATIC_ASSERT_ENUM(WebAXDescriptionFromUninitialized, | 393 STATIC_ASSERT_ENUM(WebAXDescriptionFromUninitialized, |
| 394 AXDescriptionFromUninitialized); | 394 AXDescriptionFromUninitialized); |
| 395 STATIC_ASSERT_ENUM(WebAXDescriptionFromAttribute, AXDescriptionFromAttribute); | 395 STATIC_ASSERT_ENUM(WebAXDescriptionFromAttribute, AXDescriptionFromAttribute); |
| 396 STATIC_ASSERT_ENUM(WebAXDescriptionFromContents, AXDescriptionFromContents); | 396 STATIC_ASSERT_ENUM(WebAXDescriptionFromContents, AXDescriptionFromContents); |
| 397 STATIC_ASSERT_ENUM(WebAXDescriptionFromPlaceholder, | |
| 398 AXDescriptionFromPlaceholder); | |
| 399 STATIC_ASSERT_ENUM(WebAXDescriptionFromRelatedElement, | 397 STATIC_ASSERT_ENUM(WebAXDescriptionFromRelatedElement, |
| 400 AXDescriptionFromRelatedElement); | 398 AXDescriptionFromRelatedElement); |
| 401 | 399 |
| 402 STATIC_ASSERT_ENUM(WebAXTextAffinityUpstream, TextAffinity::Upstream); | 400 STATIC_ASSERT_ENUM(WebAXTextAffinityUpstream, TextAffinity::Upstream); |
| 403 STATIC_ASSERT_ENUM(WebAXTextAffinityDownstream, TextAffinity::Downstream); | 401 STATIC_ASSERT_ENUM(WebAXTextAffinityDownstream, TextAffinity::Downstream); |
| 404 | 402 |
| 405 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Uncached, | 403 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Uncached, |
| 406 ApplicationCacheHost::kUncached); | 404 ApplicationCacheHost::kUncached); |
| 407 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Idle, ApplicationCacheHost::kIdle); | 405 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Idle, ApplicationCacheHost::kIdle); |
| 408 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Checking, | 406 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Checking, |
| (...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 ProgressBarCompletion::DOMContentLoaded); | 898 ProgressBarCompletion::DOMContentLoaded); |
| 901 STATIC_ASSERT_ENUM( | 899 STATIC_ASSERT_ENUM( |
| 902 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames, | 900 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames, |
| 903 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames); | 901 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames); |
| 904 | 902 |
| 905 static_assert(kSerializedScriptValueVersion == | 903 static_assert(kSerializedScriptValueVersion == |
| 906 SerializedScriptValue::wireFormatVersion, | 904 SerializedScriptValue::wireFormatVersion, |
| 907 ""); | 905 ""); |
| 908 | 906 |
| 909 } // namespace blink | 907 } // namespace blink |
| OLD | NEW |