| 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/navigatorcontentutils/NavigatorContentUtilsClient.h" | 64 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" |
| 65 #include "modules/quota/DeprecatedStorageQuota.h" | 65 #include "modules/quota/DeprecatedStorageQuota.h" |
| 66 #include "modules/speech/SpeechRecognitionError.h" | 66 #include "modules/speech/SpeechRecognitionError.h" |
| 67 #include "platform/Cursor.h" | 67 #include "platform/Cursor.h" |
| 68 #include "platform/FileMetadata.h" | 68 #include "platform/FileMetadata.h" |
| 69 #include "platform/FileSystemType.h" | 69 #include "platform/FileSystemType.h" |
| 70 #include "platform/PlatformMouseEvent.h" | 70 #include "platform/PlatformMouseEvent.h" |
| 71 #include "platform/fonts/FontDescription.h" | 71 #include "platform/fonts/FontDescription.h" |
| 72 #include "platform/fonts/FontSmoothingMode.h" | 72 #include "platform/fonts/FontSmoothingMode.h" |
| 73 #include "platform/graphics/filters/FilterOperation.h" | 73 #include "platform/graphics/filters/FilterOperation.h" |
| 74 #include "platform/graphics/media/MediaPlayer.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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentNode, Node::DOCUMENT_NODE); | 462 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentNode, Node::DOCUMENT_NODE); |
| 464 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentTypeNode, Node::DOCUMENT_TYPE_NODE)
; | 463 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentTypeNode, Node::DOCUMENT_TYPE_NODE)
; |
| 465 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentFragmentNode, Node::DOCUMENT_FRAGME
NT_NODE); | 464 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentFragmentNode, Node::DOCUMENT_FRAGME
NT_NODE); |
| 466 | 465 |
| 467 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveNothing, HTMLMediaElem
ent::HAVE_NOTHING); | 466 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveNothing, HTMLMediaElem
ent::HAVE_NOTHING); |
| 468 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveMetadata, HTMLMediaEle
ment::HAVE_METADATA); | 467 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveMetadata, HTMLMediaEle
ment::HAVE_METADATA); |
| 469 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveCurrentData, HTMLMedia
Element::HAVE_CURRENT_DATA); | 468 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveCurrentData, HTMLMedia
Element::HAVE_CURRENT_DATA); |
| 470 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveFutureData, HTMLMediaE
lement::HAVE_FUTURE_DATA); | 469 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveFutureData, HTMLMediaE
lement::HAVE_FUTURE_DATA); |
| 471 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveEnoughData, HTMLMediaE
lement::HAVE_ENOUGH_DATA); | 470 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveEnoughData, HTMLMediaE
lement::HAVE_ENOUGH_DATA); |
| 472 | 471 |
| 473 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::PreloadNone, MediaPlayer::None); | |
| 474 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::PreloadMetaData, MediaPlayer::MetaDa
ta); | |
| 475 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::PreloadAuto, MediaPlayer::Auto); | |
| 476 | |
| 477 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonNone, NoButton); | 472 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonNone, NoButton); |
| 478 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonLeft, LeftButton); | 473 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonLeft, LeftButton); |
| 479 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonMiddle, MiddleButton); | 474 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonMiddle, MiddleButton); |
| 480 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonRight, RightButton); | 475 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonRight, RightButton); |
| 481 | 476 |
| 482 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::Horizontal, HorizontalScrollbar); | 477 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::Horizontal, HorizontalScrollbar); |
| 483 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::Vertical, VerticalScrollbar); | 478 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::Vertical, VerticalScrollbar); |
| 484 | 479 |
| 485 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::ScrollByLine, ScrollByLine); | 480 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::ScrollByLine, ScrollByLine); |
| 486 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::ScrollByPage, ScrollByPage); | 481 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::ScrollByPage, ScrollByPage); |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::AutomaticFeatures, SandboxAutomatic
Features); | 711 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::AutomaticFeatures, SandboxAutomatic
Features); |
| 717 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock); | 712 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock); |
| 718 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDoma
in); | 713 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDoma
in); |
| 719 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientation
Lock); | 714 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientation
Lock); |
| 720 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PropagatesToAuxiliaryBrowsingContex
ts, SandboxPropagatesToAuxiliaryBrowsingContexts); | 715 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PropagatesToAuxiliaryBrowsingContex
ts, SandboxPropagatesToAuxiliaryBrowsingContexts); |
| 721 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Modals, SandboxModals); | 716 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Modals, SandboxModals); |
| 722 | 717 |
| 723 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClie
nt::BeforeUnloadHandler); | 718 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClie
nt::BeforeUnloadHandler); |
| 724 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::Un
loadHandler); | 719 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::Un
loadHandler); |
| 725 } // namespace blink | 720 } // namespace blink |
| OLD | NEW |