| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/forms/TextControlInnerElements.h" | 52 #include "core/html/forms/TextControlInnerElements.h" |
| 53 #include "core/html/media/AutoplayPolicy.h" | 53 #include "core/html/media/AutoplayPolicy.h" |
| 54 #include "core/layout/compositing/CompositedSelectionBound.h" | 54 #include "core/layout/compositing/CompositedSelectionBound.h" |
| 55 #include "core/loader/FrameLoaderTypes.h" | 55 #include "core/loader/FrameLoaderTypes.h" |
| 56 #include "core/loader/NavigationPolicy.h" | 56 #include "core/loader/NavigationPolicy.h" |
| 57 #include "core/loader/appcache/ApplicationCacheHost.h" | 57 #include "core/loader/appcache/ApplicationCacheHost.h" |
| 58 #include "core/page/PageVisibilityState.h" | 58 #include "core/page/PageVisibilityState.h" |
| 59 #include "core/style/ComputedStyleConstants.h" | 59 #include "core/style/ComputedStyleConstants.h" |
| 60 #include "modules/accessibility/AXObject.h" | 60 #include "modules/accessibility/AXObjectImpl.h" |
| 61 #include "modules/indexeddb/IDBKey.h" | 61 #include "modules/indexeddb/IDBKey.h" |
| 62 #include "modules/indexeddb/IDBKeyPath.h" | 62 #include "modules/indexeddb/IDBKeyPath.h" |
| 63 #include "modules/indexeddb/IDBMetadata.h" | 63 #include "modules/indexeddb/IDBMetadata.h" |
| 64 #include "modules/indexeddb/IndexedDB.h" | 64 #include "modules/indexeddb/IndexedDB.h" |
| 65 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" | 65 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" |
| 66 #include "modules/quota/DeprecatedStorageQuota.h" | 66 #include "modules/quota/DeprecatedStorageQuota.h" |
| 67 #include "modules/speech/SpeechRecognitionError.h" | 67 #include "modules/speech/SpeechRecognitionError.h" |
| 68 #include "platform/Cursor.h" | 68 #include "platform/Cursor.h" |
| 69 #include "platform/FileMetadata.h" | 69 #include "platform/FileMetadata.h" |
| 70 #include "platform/FileSystemType.h" | 70 #include "platform/FileSystemType.h" |
| (...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 | 884 |
| 885 // This ensures that the version number published in | 885 // This ensures that the version number published in |
| 886 // WebSerializedScriptValueVersion.h matches the serializer's understanding. | 886 // WebSerializedScriptValueVersion.h matches the serializer's understanding. |
| 887 // TODO(jbroman): Fix this to also account for the V8-side version. See | 887 // TODO(jbroman): Fix this to also account for the V8-side version. See |
| 888 // https://crbug.com/704293. | 888 // https://crbug.com/704293. |
| 889 static_assert(kSerializedScriptValueVersion == | 889 static_assert(kSerializedScriptValueVersion == |
| 890 SerializedScriptValue::kWireFormatVersion, | 890 SerializedScriptValue::kWireFormatVersion, |
| 891 "Update WebSerializedScriptValueVersion.h."); | 891 "Update WebSerializedScriptValueVersion.h."); |
| 892 | 892 |
| 893 } // namespace blink | 893 } // namespace blink |
| OLD | NEW |