| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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" |
| 71 #include "platform/PlatformMouseEvent.h" | 71 #include "platform/PlatformMouseEvent.h" |
| 72 #include "platform/fonts/FontDescription.h" | 72 #include "platform/fonts/FontDescription.h" |
| 73 #include "platform/fonts/FontSmoothingMode.h" | 73 #include "platform/fonts/FontSmoothingMode.h" |
| 74 #include "platform/graphics/filters/FilterOperation.h" | |
| 75 #include "platform/mediastream/MediaStreamSource.h" | 74 #include "platform/mediastream/MediaStreamSource.h" |
| 76 #include "platform/network/ContentSecurityPolicyParsers.h" | 75 #include "platform/network/ContentSecurityPolicyParsers.h" |
| 77 #include "platform/network/ResourceLoadPriority.h" | 76 #include "platform/network/ResourceLoadPriority.h" |
| 78 #include "platform/network/ResourceResponse.h" | 77 #include "platform/network/ResourceResponse.h" |
| 79 #include "platform/scroll/ScrollTypes.h" | 78 #include "platform/scroll/ScrollTypes.h" |
| 80 #include "platform/text/TextChecking.h" | 79 #include "platform/text/TextChecking.h" |
| 81 #include "platform/text/TextDecoration.h" | 80 #include "platform/text/TextDecoration.h" |
| 82 #include "platform/weborigin/ReferrerPolicy.h" | 81 #include "platform/weborigin/ReferrerPolicy.h" |
| 83 #include "platform/weborigin/SchemeRegistry.h" | 82 #include "platform/weborigin/SchemeRegistry.h" |
| 84 #include "public/platform/WebApplicationCacheHost.h" | 83 #include "public/platform/WebApplicationCacheHost.h" |
| (...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 747 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::ReplaceCurrentItem, FrameLoadTypeR
eplaceCurrentItem); | 746 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::ReplaceCurrentItem, FrameLoadTypeR
eplaceCurrentItem); |
| 748 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::InitialInChildFrame, FrameLoadType
InitialInChildFrame); | 747 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::InitialInChildFrame, FrameLoadType
InitialInChildFrame); |
| 749 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::InitialHistoryLoad, FrameLoadTypeI
nitialHistoryLoad); | 748 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::InitialHistoryLoad, FrameLoadTypeI
nitialHistoryLoad); |
| 750 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::ReloadFromOrigin, FrameLoadTypeRel
oadFromOrigin); | 749 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::ReloadFromOrigin, FrameLoadTypeRel
oadFromOrigin); |
| 751 | 750 |
| 752 STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Remove, WebFrameClient::DetachType:
:Remove); | 751 STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Remove, WebFrameClient::DetachType:
:Remove); |
| 753 STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Swap, WebFrameClient::DetachType::S
wap); | 752 STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Swap, WebFrameClient::DetachType::S
wap); |
| 754 STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Remove, WebRemoteFrameClient::Detac
hType::Remove); | 753 STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Remove, WebRemoteFrameClient::Detac
hType::Remove); |
| 755 STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Swap, WebRemoteFrameClient::DetachT
ype::Swap); | 754 STATIC_ASSERT_MATCHING_ENUM(FrameDetachType::Swap, WebRemoteFrameClient::DetachT
ype::Swap); |
| 756 } // namespace blink | 755 } // namespace blink |
| OLD | NEW |