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 28 matching lines...) Expand all Loading... |
39 #include <public/WebFileSystem.h> | 39 #include <public/WebFileSystem.h> |
40 #include <public/WebFilterOperation.h> | 40 #include <public/WebFilterOperation.h> |
41 #include <public/WebIDBCursor.h> | 41 #include <public/WebIDBCursor.h> |
42 #include <public/WebIDBDatabase.h> | 42 #include <public/WebIDBDatabase.h> |
43 #include <public/WebIDBDatabaseException.h> | 43 #include <public/WebIDBDatabaseException.h> |
44 #include <public/WebIDBFactory.h> | 44 #include <public/WebIDBFactory.h> |
45 #include <public/WebIDBKey.h> | 45 #include <public/WebIDBKey.h> |
46 #include <public/WebIDBKeyPath.h> | 46 #include <public/WebIDBKeyPath.h> |
47 #include <public/WebIDBMetadata.h> | 47 #include <public/WebIDBMetadata.h> |
48 #include <public/WebMediaStreamSource.h> | 48 #include <public/WebMediaStreamSource.h> |
| 49 #include <public/WebPrescientNetworking.h> |
49 #include <public/WebReferrerPolicy.h> | 50 #include <public/WebReferrerPolicy.h> |
50 #include <public/WebRTCDataChannelHandlerClient.h> | 51 #include <public/WebRTCDataChannelHandlerClient.h> |
51 #include <public/WebRTCPeerConnectionHandlerClient.h> | 52 #include <public/WebRTCPeerConnectionHandlerClient.h> |
52 #include <public/WebScrollbar.h> | 53 #include <public/WebScrollbar.h> |
53 #include <public/WebURLRequest.h> | 54 #include <public/WebURLRequest.h> |
54 #include <public/WebURLResponse.h> | 55 #include <public/WebURLResponse.h> |
55 #include <wtf/Assertions.h> | 56 #include <wtf/Assertions.h> |
56 #include <wtf/text/StringImpl.h> | 57 #include <wtf/text/StringImpl.h> |
57 #include "WebAccessibilityNotification.h" | 58 #include "WebAccessibilityNotification.h" |
58 #include "WebAccessibilityObject.h" | 59 #include "WebAccessibilityObject.h" |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 #include "core/platform/Cursor.h" | 102 #include "core/platform/Cursor.h" |
102 #include "core/platform/FileMetadata.h" | 103 #include "core/platform/FileMetadata.h" |
103 #include "core/platform/graphics/FontDescription.h" | 104 #include "core/platform/graphics/FontDescription.h" |
104 #include "core/platform/graphics/FontSmoothingMode.h" | 105 #include "core/platform/graphics/FontSmoothingMode.h" |
105 #include "core/platform/graphics/MediaPlayer.h" | 106 #include "core/platform/graphics/MediaPlayer.h" |
106 #include "core/platform/graphics/MediaSourcePrivate.h" | 107 #include "core/platform/graphics/MediaSourcePrivate.h" |
107 #include "core/platform/graphics/filters/FilterOperation.h" | 108 #include "core/platform/graphics/filters/FilterOperation.h" |
108 #include "core/platform/mediastream/MediaStreamSource.h" | 109 #include "core/platform/mediastream/MediaStreamSource.h" |
109 #include "core/platform/mediastream/RTCDataChannelHandlerClient.h" | 110 #include "core/platform/mediastream/RTCDataChannelHandlerClient.h" |
110 #include "core/platform/mediastream/RTCPeerConnectionHandlerClient.h" | 111 #include "core/platform/mediastream/RTCPeerConnectionHandlerClient.h" |
| 112 #include "core/platform/network/Preconnect.h" |
111 #include "core/platform/network/ResourceLoadPriority.h" | 113 #include "core/platform/network/ResourceLoadPriority.h" |
112 #include "core/platform/network/ResourceResponse.h" | 114 #include "core/platform/network/ResourceResponse.h" |
113 #include "core/platform/text/TextChecking.h" | 115 #include "core/platform/text/TextChecking.h" |
114 #include "modules/filesystem/FileSystemType.h" | 116 #include "modules/filesystem/FileSystemType.h" |
115 #include "modules/geolocation/GeolocationError.h" | 117 #include "modules/geolocation/GeolocationError.h" |
116 #include "modules/geolocation/GeolocationPosition.h" | 118 #include "modules/geolocation/GeolocationPosition.h" |
117 #include "modules/indexeddb/IDBCursor.h" | 119 #include "modules/indexeddb/IDBCursor.h" |
118 #include "modules/indexeddb/IDBDatabaseBackendInterface.h" | 120 #include "modules/indexeddb/IDBDatabaseBackendInterface.h" |
119 #include "modules/indexeddb/IDBDatabaseException.h" | 121 #include "modules/indexeddb/IDBDatabaseException.h" |
120 #include "modules/indexeddb/IDBKey.h" | 122 #include "modules/indexeddb/IDBKey.h" |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 COMPILE_ASSERT_MATCHING_ENUM(WebStorageQuotaErrorAbort, ABORT_ERR); | 545 COMPILE_ASSERT_MATCHING_ENUM(WebStorageQuotaErrorAbort, ABORT_ERR); |
544 | 546 |
545 COMPILE_ASSERT_MATCHING_ENUM(WebStorageQuotaTypeTemporary, StorageQuota::Tempora
ry); | 547 COMPILE_ASSERT_MATCHING_ENUM(WebStorageQuotaTypeTemporary, StorageQuota::Tempora
ry); |
546 COMPILE_ASSERT_MATCHING_ENUM(WebStorageQuotaTypePersistent, StorageQuota::Persis
tent); | 548 COMPILE_ASSERT_MATCHING_ENUM(WebStorageQuotaTypePersistent, StorageQuota::Persis
tent); |
547 | 549 |
548 COMPILE_ASSERT_MATCHING_ENUM(WebPageVisibilityStateVisible, PageVisibilityStateV
isible); | 550 COMPILE_ASSERT_MATCHING_ENUM(WebPageVisibilityStateVisible, PageVisibilityStateV
isible); |
549 COMPILE_ASSERT_MATCHING_ENUM(WebPageVisibilityStateHidden, PageVisibilityStateHi
dden); | 551 COMPILE_ASSERT_MATCHING_ENUM(WebPageVisibilityStateHidden, PageVisibilityStateHi
dden); |
550 COMPILE_ASSERT_MATCHING_ENUM(WebPageVisibilityStatePrerender, PageVisibilityStat
ePrerender); | 552 COMPILE_ASSERT_MATCHING_ENUM(WebPageVisibilityStatePrerender, PageVisibilityStat
ePrerender); |
551 COMPILE_ASSERT_MATCHING_ENUM(WebPageVisibilityStatePreview, PageVisibilityStateP
review); | 553 COMPILE_ASSERT_MATCHING_ENUM(WebPageVisibilityStatePreview, PageVisibilityStateP
review); |
552 | 554 |
| 555 COMPILE_ASSERT_MATCHING_ENUM(WebPreconnectMotivationLinkMouseDown, PreconnectMot
ivationLinkMouseDown); |
| 556 COMPILE_ASSERT_MATCHING_ENUM(WebPreconnectMotivationLinkMouseOver, PreconnectMot
ivationLinkMouseOver); |
| 557 COMPILE_ASSERT_MATCHING_ENUM(WebPreconnectMotivationLinkTapUnconfirmed, Preconne
ctMotivationLinkTapUnconfirmed); |
| 558 COMPILE_ASSERT_MATCHING_ENUM(WebPreconnectMotivationLinkTapDown, PreconnectMotiv
ationLinkTapDown); |
| 559 |
553 COMPILE_ASSERT_MATCHING_ENUM(WebMediaStreamSource::TypeAudio, MediaStreamSource:
:TypeAudio); | 560 COMPILE_ASSERT_MATCHING_ENUM(WebMediaStreamSource::TypeAudio, MediaStreamSource:
:TypeAudio); |
554 COMPILE_ASSERT_MATCHING_ENUM(WebMediaStreamSource::TypeVideo, MediaStreamSource:
:TypeVideo); | 561 COMPILE_ASSERT_MATCHING_ENUM(WebMediaStreamSource::TypeVideo, MediaStreamSource:
:TypeVideo); |
555 COMPILE_ASSERT_MATCHING_ENUM(WebMediaStreamSource::ReadyStateLive, MediaStreamSo
urce::ReadyStateLive); | 562 COMPILE_ASSERT_MATCHING_ENUM(WebMediaStreamSource::ReadyStateLive, MediaStreamSo
urce::ReadyStateLive); |
556 COMPILE_ASSERT_MATCHING_ENUM(WebMediaStreamSource::ReadyStateMuted, MediaStreamS
ource::ReadyStateMuted); | 563 COMPILE_ASSERT_MATCHING_ENUM(WebMediaStreamSource::ReadyStateMuted, MediaStreamS
ource::ReadyStateMuted); |
557 COMPILE_ASSERT_MATCHING_ENUM(WebMediaStreamSource::ReadyStateEnded, MediaStreamS
ource::ReadyStateEnded); | 564 COMPILE_ASSERT_MATCHING_ENUM(WebMediaStreamSource::ReadyStateEnded, MediaStreamS
ource::ReadyStateEnded); |
558 | 565 |
559 COMPILE_ASSERT_MATCHING_ENUM(WebRTCPeerConnectionHandlerClient::SignalingStateSt
able, RTCPeerConnectionHandlerClient::SignalingStateStable); | 566 COMPILE_ASSERT_MATCHING_ENUM(WebRTCPeerConnectionHandlerClient::SignalingStateSt
able, RTCPeerConnectionHandlerClient::SignalingStateStable); |
560 COMPILE_ASSERT_MATCHING_ENUM(WebRTCPeerConnectionHandlerClient::SignalingStateHa
veLocalOffer, RTCPeerConnectionHandlerClient::SignalingStateHaveLocalOffer); | 567 COMPILE_ASSERT_MATCHING_ENUM(WebRTCPeerConnectionHandlerClient::SignalingStateHa
veLocalOffer, RTCPeerConnectionHandlerClient::SignalingStateHaveLocalOffer); |
561 COMPILE_ASSERT_MATCHING_ENUM(WebRTCPeerConnectionHandlerClient::SignalingStateHa
veRemoteOffer, RTCPeerConnectionHandlerClient::SignalingStateHaveRemoteOffer); | 568 COMPILE_ASSERT_MATCHING_ENUM(WebRTCPeerConnectionHandlerClient::SignalingStateHa
veRemoteOffer, RTCPeerConnectionHandlerClient::SignalingStateHaveRemoteOffer); |
562 COMPILE_ASSERT_MATCHING_ENUM(WebRTCPeerConnectionHandlerClient::SignalingStateHa
veLocalPrAnswer, RTCPeerConnectionHandlerClient::SignalingStateHaveLocalPrAnswer
); | 569 COMPILE_ASSERT_MATCHING_ENUM(WebRTCPeerConnectionHandlerClient::SignalingStateHa
veLocalPrAnswer, RTCPeerConnectionHandlerClient::SignalingStateHaveLocalPrAnswer
); |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityVeryLow, ResourceLoadPriorit
yVeryLow); | 626 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityVeryLow, ResourceLoadPriorit
yVeryLow); |
620 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityLow, ResourceLoadPriorityLow
); | 627 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityLow, ResourceLoadPriorityLow
); |
621 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityMedium, ResourceLoadPriority
Medium); | 628 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityMedium, ResourceLoadPriority
Medium); |
622 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityHigh, ResourceLoadPriorityHi
gh); | 629 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityHigh, ResourceLoadPriorityHi
gh); |
623 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityVeryHigh, ResourceLoadPriori
tyVeryHigh); | 630 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityVeryHigh, ResourceLoadPriori
tyVeryHigh); |
624 | 631 |
625 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelDebug, DebugMessageLevel); | 632 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelDebug, DebugMessageLevel); |
626 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelLog, LogMessageLevel); | 633 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelLog, LogMessageLevel); |
627 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelWarning, WarningMessageLeve
l); | 634 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelWarning, WarningMessageLeve
l); |
628 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelError, ErrorMessageLevel); | 635 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelError, ErrorMessageLevel); |
OLD | NEW |