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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentNode, Node::DOCUMENT_NODE); | 454 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentNode, Node::DOCUMENT_NODE); |
456 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentTypeNode, Node::DOCUMENT_TYPE_NODE)
; | 455 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentTypeNode, Node::DOCUMENT_TYPE_NODE)
; |
457 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentFragmentNode, Node::DOCUMENT_FRAGME
NT_NODE); | 456 STATIC_ASSERT_MATCHING_ENUM(WebNode::DocumentFragmentNode, Node::DOCUMENT_FRAGME
NT_NODE); |
458 | 457 |
459 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveNothing, HTMLMediaElem
ent::HAVE_NOTHING); | 458 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveNothing, HTMLMediaElem
ent::HAVE_NOTHING); |
460 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveMetadata, HTMLMediaEle
ment::HAVE_METADATA); | 459 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveMetadata, HTMLMediaEle
ment::HAVE_METADATA); |
461 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveCurrentData, HTMLMedia
Element::HAVE_CURRENT_DATA); | 460 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveCurrentData, HTMLMedia
Element::HAVE_CURRENT_DATA); |
462 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveFutureData, HTMLMediaE
lement::HAVE_FUTURE_DATA); | 461 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveFutureData, HTMLMediaE
lement::HAVE_FUTURE_DATA); |
463 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveEnoughData, HTMLMediaE
lement::HAVE_ENOUGH_DATA); | 462 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::ReadyStateHaveEnoughData, HTMLMediaE
lement::HAVE_ENOUGH_DATA); |
464 | 463 |
465 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::PreloadNone, MediaPlayer::None); | |
466 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::PreloadMetaData, MediaPlayer::MetaDa
ta); | |
467 STATIC_ASSERT_MATCHING_ENUM(WebMediaPlayer::PreloadAuto, MediaPlayer::Auto); | |
468 | |
469 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonNone, NoButton); | 464 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonNone, NoButton); |
470 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonLeft, LeftButton); | 465 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonLeft, LeftButton); |
471 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonMiddle, MiddleButton); | 466 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonMiddle, MiddleButton); |
472 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonRight, RightButton); | 467 STATIC_ASSERT_MATCHING_ENUM(WebMouseEvent::ButtonRight, RightButton); |
473 | 468 |
474 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::Horizontal, HorizontalScrollbar); | 469 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::Horizontal, HorizontalScrollbar); |
475 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::Vertical, VerticalScrollbar); | 470 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::Vertical, VerticalScrollbar); |
476 | 471 |
477 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::ScrollByLine, ScrollByLine); | 472 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::ScrollByLine, ScrollByLine); |
478 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::ScrollByPage, ScrollByPage); | 473 STATIC_ASSERT_MATCHING_ENUM(WebScrollbar::ScrollByPage, ScrollByPage); |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
699 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::TopNavigation, SandboxTopNavigation
); | 694 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::TopNavigation, SandboxTopNavigation
); |
700 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Popups, SandboxPopups); | 695 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Popups, SandboxPopups); |
701 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::AutomaticFeatures, SandboxAutomatic
Features); | 696 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::AutomaticFeatures, SandboxAutomatic
Features); |
702 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock); | 697 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock); |
703 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDoma
in); | 698 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDoma
in); |
704 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientation
Lock); | 699 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientation
Lock); |
705 | 700 |
706 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClie
nt::BeforeUnloadHandler); | 701 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClie
nt::BeforeUnloadHandler); |
707 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::Un
loadHandler); | 702 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::Un
loadHandler); |
708 } // namespace blink | 703 } // namespace blink |
OLD | NEW |