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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #endif | 42 #endif |
43 #include "core/fileapi/FileError.h" | 43 #include "core/fileapi/FileError.h" |
44 #include "core/frame/Frame.h" | 44 #include "core/frame/Frame.h" |
45 #include "core/frame/FrameTypes.h" | 45 #include "core/frame/FrameTypes.h" |
46 #include "core/frame/LocalFrameClient.h" | 46 #include "core/frame/LocalFrameClient.h" |
47 #include "core/frame/Settings.h" | 47 #include "core/frame/Settings.h" |
48 #include "core/frame/csp/CSPSource.h" | 48 #include "core/frame/csp/CSPSource.h" |
49 #include "core/frame/csp/ContentSecurityPolicy.h" | 49 #include "core/frame/csp/ContentSecurityPolicy.h" |
50 #include "core/html/HTMLInputElement.h" | 50 #include "core/html/HTMLInputElement.h" |
51 #include "core/html/HTMLMediaElement.h" | 51 #include "core/html/HTMLMediaElement.h" |
52 #include "core/html/shadow/TextControlInnerElements.h" | 52 #include "core/html/forms/TextControlInnerElements.h" |
53 #include "core/layout/compositing/CompositedSelectionBound.h" | 53 #include "core/layout/compositing/CompositedSelectionBound.h" |
54 #include "core/loader/FrameLoaderTypes.h" | 54 #include "core/loader/FrameLoaderTypes.h" |
55 #include "core/loader/NavigationPolicy.h" | 55 #include "core/loader/NavigationPolicy.h" |
56 #include "core/loader/appcache/ApplicationCacheHost.h" | 56 #include "core/loader/appcache/ApplicationCacheHost.h" |
57 #include "core/page/PageVisibilityState.h" | 57 #include "core/page/PageVisibilityState.h" |
58 #include "core/style/ComputedStyleConstants.h" | 58 #include "core/style/ComputedStyleConstants.h" |
59 #include "modules/accessibility/AXObject.h" | 59 #include "modules/accessibility/AXObject.h" |
60 #include "modules/indexeddb/IDBKey.h" | 60 #include "modules/indexeddb/IDBKey.h" |
61 #include "modules/indexeddb/IDBKeyPath.h" | 61 #include "modules/indexeddb/IDBKeyPath.h" |
62 #include "modules/indexeddb/IDBMetadata.h" | 62 #include "modules/indexeddb/IDBMetadata.h" |
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 | 887 |
888 // This ensures that the version number published in | 888 // This ensures that the version number published in |
889 // WebSerializedScriptValueVersion.h matches the serializer's understanding. | 889 // WebSerializedScriptValueVersion.h matches the serializer's understanding. |
890 // TODO(jbroman): Fix this to also account for the V8-side version. See | 890 // TODO(jbroman): Fix this to also account for the V8-side version. See |
891 // https://crbug.com/704293. | 891 // https://crbug.com/704293. |
892 static_assert(kSerializedScriptValueVersion == | 892 static_assert(kSerializedScriptValueVersion == |
893 SerializedScriptValue::kWireFormatVersion, | 893 SerializedScriptValue::kWireFormatVersion, |
894 "Update WebSerializedScriptValueVersion.h."); | 894 "Update WebSerializedScriptValueVersion.h."); |
895 | 895 |
896 } // namespace blink | 896 } // namespace blink |
OLD | NEW |