| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include "core/html/HTMLFormElement.h" | 45 #include "core/html/HTMLFormElement.h" |
| 46 #include "core/html/HTMLInputElement.h" | 46 #include "core/html/HTMLInputElement.h" |
| 47 #include "core/html/HTMLMediaElement.h" | 47 #include "core/html/HTMLMediaElement.h" |
| 48 #include "core/html/shadow/TextControlInnerElements.h" | 48 #include "core/html/shadow/TextControlInnerElements.h" |
| 49 #include "core/layout/compositing/CompositedSelectionBound.h" | 49 #include "core/layout/compositing/CompositedSelectionBound.h" |
| 50 #include "core/style/ComputedStyleConstants.h" | 50 #include "core/style/ComputedStyleConstants.h" |
| 51 #include "core/loader/FrameLoaderClient.h" | 51 #include "core/loader/FrameLoaderClient.h" |
| 52 #include "core/loader/FrameLoaderTypes.h" | 52 #include "core/loader/FrameLoaderTypes.h" |
| 53 #include "core/loader/NavigationPolicy.h" | 53 #include "core/loader/NavigationPolicy.h" |
| 54 #include "core/loader/appcache/ApplicationCacheHost.h" | 54 #include "core/loader/appcache/ApplicationCacheHost.h" |
| 55 #include "core/page/InjectedStyleSheets.h" | |
| 56 #include "core/page/PageVisibilityState.h" | 55 #include "core/page/PageVisibilityState.h" |
| 57 #include "modules/accessibility/AXObject.h" | 56 #include "modules/accessibility/AXObject.h" |
| 58 #include "modules/geolocation/GeolocationError.h" | 57 #include "modules/geolocation/GeolocationError.h" |
| 59 #include "modules/geolocation/GeolocationPosition.h" | 58 #include "modules/geolocation/GeolocationPosition.h" |
| 60 #include "modules/indexeddb/IDBKey.h" | 59 #include "modules/indexeddb/IDBKey.h" |
| 61 #include "modules/indexeddb/IDBKeyPath.h" | 60 #include "modules/indexeddb/IDBKeyPath.h" |
| 62 #include "modules/indexeddb/IDBMetadata.h" | 61 #include "modules/indexeddb/IDBMetadata.h" |
| 63 #include "modules/indexeddb/IndexedDB.h" | 62 #include "modules/indexeddb/IndexedDB.h" |
| 64 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" | 63 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" |
| 65 #include "modules/quota/DeprecatedStorageQuota.h" | 64 #include "modules/quota/DeprecatedStorageQuota.h" |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 STATIC_ASSERT_MATCHING_ENUM(WebScrollbarBehavior::ButtonRight, RightButton); | 492 STATIC_ASSERT_MATCHING_ENUM(WebScrollbarBehavior::ButtonRight, RightButton); |
| 494 | 493 |
| 495 STATIC_ASSERT_MATCHING_ENUM(WebSettings::EditingBehaviorMac, EditingMacBehavior)
; | 494 STATIC_ASSERT_MATCHING_ENUM(WebSettings::EditingBehaviorMac, EditingMacBehavior)
; |
| 496 STATIC_ASSERT_MATCHING_ENUM(WebSettings::EditingBehaviorWin, EditingWindowsBehav
ior); | 495 STATIC_ASSERT_MATCHING_ENUM(WebSettings::EditingBehaviorWin, EditingWindowsBehav
ior); |
| 497 STATIC_ASSERT_MATCHING_ENUM(WebSettings::EditingBehaviorUnix, EditingUnixBehavio
r); | 496 STATIC_ASSERT_MATCHING_ENUM(WebSettings::EditingBehaviorUnix, EditingUnixBehavio
r); |
| 498 STATIC_ASSERT_MATCHING_ENUM(WebSettings::EditingBehaviorAndroid, EditingAndroidB
ehavior); | 497 STATIC_ASSERT_MATCHING_ENUM(WebSettings::EditingBehaviorAndroid, EditingAndroidB
ehavior); |
| 499 | 498 |
| 500 STATIC_ASSERT_MATCHING_ENUM(WebTextAffinityUpstream, UPSTREAM); | 499 STATIC_ASSERT_MATCHING_ENUM(WebTextAffinityUpstream, UPSTREAM); |
| 501 STATIC_ASSERT_MATCHING_ENUM(WebTextAffinityDownstream, DOWNSTREAM); | 500 STATIC_ASSERT_MATCHING_ENUM(WebTextAffinityDownstream, DOWNSTREAM); |
| 502 | 501 |
| 503 STATIC_ASSERT_MATCHING_ENUM(WebView::InjectStyleInAllFrames, InjectStyleInAllFra
mes); | |
| 504 STATIC_ASSERT_MATCHING_ENUM(WebView::InjectStyleInTopFrameOnly, InjectStyleInTop
FrameOnly); | |
| 505 | |
| 506 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionUnknownError, UnknownError); | 502 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionUnknownError, UnknownError); |
| 507 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionConstraintError, ConstraintEr
ror); | 503 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionConstraintError, ConstraintEr
ror); |
| 508 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionDataError, DataError); | 504 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionDataError, DataError); |
| 509 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionVersionError, VersionError); | 505 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionVersionError, VersionError); |
| 510 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionAbortError, AbortError); | 506 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionAbortError, AbortError); |
| 511 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionQuotaError, QuotaExceededErro
r); | 507 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionQuotaError, QuotaExceededErro
r); |
| 512 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionTimeoutError, TimeoutError); | 508 STATIC_ASSERT_MATCHING_ENUM(WebIDBDatabaseExceptionTimeoutError, TimeoutError); |
| 513 | 509 |
| 514 STATIC_ASSERT_MATCHING_ENUM(WebIDBKeyTypeInvalid, IDBKey::InvalidType); | 510 STATIC_ASSERT_MATCHING_ENUM(WebIDBKeyTypeInvalid, IDBKey::InvalidType); |
| 515 STATIC_ASSERT_MATCHING_ENUM(WebIDBKeyTypeArray, IDBKey::ArrayType); | 511 STATIC_ASSERT_MATCHING_ENUM(WebIDBKeyTypeArray, IDBKey::ArrayType); |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::TopNavigation, SandboxTopNavigation
); | 689 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::TopNavigation, SandboxTopNavigation
); |
| 694 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Popups, SandboxPopups); | 690 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Popups, SandboxPopups); |
| 695 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::AutomaticFeatures, SandboxAutomatic
Features); | 691 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::AutomaticFeatures, SandboxAutomatic
Features); |
| 696 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock); | 692 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock); |
| 697 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDoma
in); | 693 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDoma
in); |
| 698 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientation
Lock); | 694 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientation
Lock); |
| 699 | 695 |
| 700 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClie
nt::BeforeUnloadHandler); | 696 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClie
nt::BeforeUnloadHandler); |
| 701 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::Un
loadHandler); | 697 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::Un
loadHandler); |
| 702 } // namespace blink | 698 } // namespace blink |
| OLD | NEW |