| 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 29 matching lines...) Expand all Loading... |
| 40 #include "core/dom/IconURL.h" | 40 #include "core/dom/IconURL.h" |
| 41 #include "core/editing/TextAffinity.h" | 41 #include "core/editing/TextAffinity.h" |
| 42 #include "core/fileapi/FileError.h" | 42 #include "core/fileapi/FileError.h" |
| 43 #include "core/frame/Settings.h" | 43 #include "core/frame/Settings.h" |
| 44 #include "core/frame/csp/ContentSecurityPolicy.h" | 44 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 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/layout/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" | 55 #include "core/page/InjectedStyleSheets.h" |
| 56 #include "core/page/PageVisibilityState.h" | 56 #include "core/page/PageVisibilityState.h" |
| 57 #include "modules/accessibility/AXObject.h" | 57 #include "modules/accessibility/AXObject.h" |
| 58 #include "modules/geolocation/GeolocationError.h" | 58 #include "modules/geolocation/GeolocationError.h" |
| 59 #include "modules/geolocation/GeolocationPosition.h" | 59 #include "modules/geolocation/GeolocationPosition.h" |
| 60 #include "modules/indexeddb/IDBKey.h" | 60 #include "modules/indexeddb/IDBKey.h" |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::TopNavigation, SandboxTopNavigation
); | 693 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::TopNavigation, SandboxTopNavigation
); |
| 694 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Popups, SandboxPopups); | 694 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Popups, SandboxPopups); |
| 695 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::AutomaticFeatures, SandboxAutomatic
Features); | 695 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::AutomaticFeatures, SandboxAutomatic
Features); |
| 696 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock); | 696 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock); |
| 697 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDoma
in); | 697 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDoma
in); |
| 698 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientation
Lock); | 698 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientation
Lock); |
| 699 | 699 |
| 700 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClie
nt::BeforeUnloadHandler); | 700 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClie
nt::BeforeUnloadHandler); |
| 701 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::Un
loadHandler); | 701 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::Un
loadHandler); |
| 702 } // namespace blink | 702 } // namespace blink |
| OLD | NEW |