Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: third_party/WebKit/Source/web/AssertMatchingEnums.cpp

Issue 2655873003: Remove PlatformEvent it is no longer used. (Closed)
Patch Set: Remove PlatformEvent it is no longer used. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 #include "modules/indexeddb/IDBKey.h" 59 #include "modules/indexeddb/IDBKey.h"
60 #include "modules/indexeddb/IDBKeyPath.h" 60 #include "modules/indexeddb/IDBKeyPath.h"
61 #include "modules/indexeddb/IDBMetadata.h" 61 #include "modules/indexeddb/IDBMetadata.h"
62 #include "modules/indexeddb/IndexedDB.h" 62 #include "modules/indexeddb/IndexedDB.h"
63 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" 63 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h"
64 #include "modules/quota/DeprecatedStorageQuota.h" 64 #include "modules/quota/DeprecatedStorageQuota.h"
65 #include "modules/speech/SpeechRecognitionError.h" 65 #include "modules/speech/SpeechRecognitionError.h"
66 #include "platform/Cursor.h" 66 #include "platform/Cursor.h"
67 #include "platform/FileMetadata.h" 67 #include "platform/FileMetadata.h"
68 #include "platform/FileSystemType.h" 68 #include "platform/FileSystemType.h"
69 #include "platform/PlatformEvent.h"
70 #include "platform/fonts/FontDescription.h" 69 #include "platform/fonts/FontDescription.h"
71 #include "platform/fonts/FontSmoothingMode.h" 70 #include "platform/fonts/FontSmoothingMode.h"
72 #include "platform/mediastream/MediaStreamSource.h" 71 #include "platform/mediastream/MediaStreamSource.h"
73 #include "platform/network/ContentSecurityPolicyParsers.h" 72 #include "platform/network/ContentSecurityPolicyParsers.h"
74 #include "platform/network/ResourceLoadPriority.h" 73 #include "platform/network/ResourceLoadPriority.h"
75 #include "platform/network/ResourceResponse.h" 74 #include "platform/network/ResourceResponse.h"
76 #include "platform/scroll/ScrollTypes.h" 75 #include "platform/scroll/ScrollTypes.h"
77 #include "platform/text/TextChecking.h" 76 #include "platform/text/TextChecking.h"
78 #include "platform/text/TextDecoration.h" 77 #include "platform/text/TextDecoration.h"
79 #include "platform/weborigin/ReferrerPolicy.h" 78 #include "platform/weborigin/ReferrerPolicy.h"
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 STATIC_ASSERT_ENUM(WebFrameOwnerProperties::ScrollingMode::AlwaysOff, 540 STATIC_ASSERT_ENUM(WebFrameOwnerProperties::ScrollingMode::AlwaysOff,
542 ScrollbarAlwaysOff); 541 ScrollbarAlwaysOff);
543 STATIC_ASSERT_ENUM(WebFrameOwnerProperties::ScrollingMode::AlwaysOn, 542 STATIC_ASSERT_ENUM(WebFrameOwnerProperties::ScrollingMode::AlwaysOn,
544 ScrollbarAlwaysOn); 543 ScrollbarAlwaysOn);
545 544
546 STATIC_ASSERT_ENUM(WebIconURL::TypeInvalid, InvalidIcon); 545 STATIC_ASSERT_ENUM(WebIconURL::TypeInvalid, InvalidIcon);
547 STATIC_ASSERT_ENUM(WebIconURL::TypeFavicon, Favicon); 546 STATIC_ASSERT_ENUM(WebIconURL::TypeFavicon, Favicon);
548 STATIC_ASSERT_ENUM(WebIconURL::TypeTouch, TouchIcon); 547 STATIC_ASSERT_ENUM(WebIconURL::TypeTouch, TouchIcon);
549 STATIC_ASSERT_ENUM(WebIconURL::TypeTouchPrecomposed, TouchPrecomposedIcon); 548 STATIC_ASSERT_ENUM(WebIconURL::TypeTouchPrecomposed, TouchPrecomposedIcon);
550 549
551 STATIC_ASSERT_ENUM(WebInputEvent::ShiftKey, PlatformEvent::ShiftKey);
552 STATIC_ASSERT_ENUM(WebInputEvent::ControlKey, PlatformEvent::CtrlKey);
553 STATIC_ASSERT_ENUM(WebInputEvent::AltKey, PlatformEvent::AltKey);
554 STATIC_ASSERT_ENUM(WebInputEvent::MetaKey, PlatformEvent::MetaKey);
555 STATIC_ASSERT_ENUM(WebInputEvent::AltGrKey, PlatformEvent::AltGrKey);
556 STATIC_ASSERT_ENUM(WebInputEvent::FnKey, PlatformEvent::FnKey);
557 STATIC_ASSERT_ENUM(WebInputEvent::SymbolKey, PlatformEvent::SymbolKey);
558 STATIC_ASSERT_ENUM(WebInputEvent::IsKeyPad, PlatformEvent::IsKeyPad);
559 STATIC_ASSERT_ENUM(WebInputEvent::IsAutoRepeat, PlatformEvent::IsAutoRepeat);
560 STATIC_ASSERT_ENUM(WebInputEvent::IsLeft, PlatformEvent::IsLeft);
561 STATIC_ASSERT_ENUM(WebInputEvent::IsRight, PlatformEvent::IsRight);
562 STATIC_ASSERT_ENUM(WebInputEvent::IsTouchAccessibility,
563 PlatformEvent::IsTouchAccessibility);
564 STATIC_ASSERT_ENUM(WebInputEvent::IsComposing, PlatformEvent::IsComposing);
565 STATIC_ASSERT_ENUM(WebInputEvent::LeftButtonDown,
566 PlatformEvent::LeftButtonDown);
567 STATIC_ASSERT_ENUM(WebInputEvent::MiddleButtonDown,
568 PlatformEvent::MiddleButtonDown);
569 STATIC_ASSERT_ENUM(WebInputEvent::RightButtonDown,
570 PlatformEvent::RightButtonDown);
571 STATIC_ASSERT_ENUM(WebInputEvent::CapsLockOn, PlatformEvent::CapsLockOn);
572 STATIC_ASSERT_ENUM(WebInputEvent::NumLockOn, PlatformEvent::NumLockOn);
573 STATIC_ASSERT_ENUM(WebInputEvent::ScrollLockOn, PlatformEvent::ScrollLockOn);
574
575 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveNothing, 550 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveNothing,
576 HTMLMediaElement::kHaveNothing); 551 HTMLMediaElement::kHaveNothing);
577 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveMetadata, 552 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveMetadata,
578 HTMLMediaElement::kHaveMetadata); 553 HTMLMediaElement::kHaveMetadata);
579 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveCurrentData, 554 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveCurrentData,
580 HTMLMediaElement::kHaveCurrentData); 555 HTMLMediaElement::kHaveCurrentData);
581 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveFutureData, 556 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveFutureData,
582 HTMLMediaElement::kHaveFutureData); 557 HTMLMediaElement::kHaveFutureData);
583 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveEnoughData, 558 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveEnoughData,
584 HTMLMediaElement::kHaveEnoughData); 559 HTMLMediaElement::kHaveEnoughData);
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
891 ProgressBarCompletion::DOMContentLoaded); 866 ProgressBarCompletion::DOMContentLoaded);
892 STATIC_ASSERT_ENUM( 867 STATIC_ASSERT_ENUM(
893 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames, 868 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames,
894 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames); 869 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames);
895 870
896 static_assert(kSerializedScriptValueVersion == 871 static_assert(kSerializedScriptValueVersion ==
897 SerializedScriptValue::wireFormatVersion, 872 SerializedScriptValue::wireFormatVersion,
898 ""); 873 "");
899 874
900 } // namespace blink 875 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698