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

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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 STATIC_ASSERT_ENUM(WebFrameOwnerProperties::ScrollingMode::AlwaysOff, 548 STATIC_ASSERT_ENUM(WebFrameOwnerProperties::ScrollingMode::AlwaysOff,
550 ScrollbarAlwaysOff); 549 ScrollbarAlwaysOff);
551 STATIC_ASSERT_ENUM(WebFrameOwnerProperties::ScrollingMode::AlwaysOn, 550 STATIC_ASSERT_ENUM(WebFrameOwnerProperties::ScrollingMode::AlwaysOn,
552 ScrollbarAlwaysOn); 551 ScrollbarAlwaysOn);
553 552
554 STATIC_ASSERT_ENUM(WebIconURL::TypeInvalid, InvalidIcon); 553 STATIC_ASSERT_ENUM(WebIconURL::TypeInvalid, InvalidIcon);
555 STATIC_ASSERT_ENUM(WebIconURL::TypeFavicon, Favicon); 554 STATIC_ASSERT_ENUM(WebIconURL::TypeFavicon, Favicon);
556 STATIC_ASSERT_ENUM(WebIconURL::TypeTouch, TouchIcon); 555 STATIC_ASSERT_ENUM(WebIconURL::TypeTouch, TouchIcon);
557 STATIC_ASSERT_ENUM(WebIconURL::TypeTouchPrecomposed, TouchPrecomposedIcon); 556 STATIC_ASSERT_ENUM(WebIconURL::TypeTouchPrecomposed, TouchPrecomposedIcon);
558 557
559 STATIC_ASSERT_ENUM(WebInputEvent::ShiftKey, PlatformEvent::ShiftKey);
560 STATIC_ASSERT_ENUM(WebInputEvent::ControlKey, PlatformEvent::CtrlKey);
561 STATIC_ASSERT_ENUM(WebInputEvent::AltKey, PlatformEvent::AltKey);
562 STATIC_ASSERT_ENUM(WebInputEvent::MetaKey, PlatformEvent::MetaKey);
563 STATIC_ASSERT_ENUM(WebInputEvent::AltGrKey, PlatformEvent::AltGrKey);
564 STATIC_ASSERT_ENUM(WebInputEvent::FnKey, PlatformEvent::FnKey);
565 STATIC_ASSERT_ENUM(WebInputEvent::SymbolKey, PlatformEvent::SymbolKey);
566 STATIC_ASSERT_ENUM(WebInputEvent::IsKeyPad, PlatformEvent::IsKeyPad);
567 STATIC_ASSERT_ENUM(WebInputEvent::IsAutoRepeat, PlatformEvent::IsAutoRepeat);
568 STATIC_ASSERT_ENUM(WebInputEvent::IsLeft, PlatformEvent::IsLeft);
569 STATIC_ASSERT_ENUM(WebInputEvent::IsRight, PlatformEvent::IsRight);
570 STATIC_ASSERT_ENUM(WebInputEvent::IsTouchAccessibility,
571 PlatformEvent::IsTouchAccessibility);
572 STATIC_ASSERT_ENUM(WebInputEvent::IsComposing, PlatformEvent::IsComposing);
573 STATIC_ASSERT_ENUM(WebInputEvent::LeftButtonDown,
574 PlatformEvent::LeftButtonDown);
575 STATIC_ASSERT_ENUM(WebInputEvent::MiddleButtonDown,
576 PlatformEvent::MiddleButtonDown);
577 STATIC_ASSERT_ENUM(WebInputEvent::RightButtonDown,
578 PlatformEvent::RightButtonDown);
579 STATIC_ASSERT_ENUM(WebInputEvent::CapsLockOn, PlatformEvent::CapsLockOn);
580 STATIC_ASSERT_ENUM(WebInputEvent::NumLockOn, PlatformEvent::NumLockOn);
581 STATIC_ASSERT_ENUM(WebInputEvent::ScrollLockOn, PlatformEvent::ScrollLockOn);
582
583 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveNothing, 558 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveNothing,
584 HTMLMediaElement::kHaveNothing); 559 HTMLMediaElement::kHaveNothing);
585 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveMetadata, 560 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveMetadata,
586 HTMLMediaElement::kHaveMetadata); 561 HTMLMediaElement::kHaveMetadata);
587 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveCurrentData, 562 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveCurrentData,
588 HTMLMediaElement::kHaveCurrentData); 563 HTMLMediaElement::kHaveCurrentData);
589 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveFutureData, 564 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveFutureData,
590 HTMLMediaElement::kHaveFutureData); 565 HTMLMediaElement::kHaveFutureData);
591 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveEnoughData, 566 STATIC_ASSERT_ENUM(WebMediaPlayer::ReadyStateHaveEnoughData,
592 HTMLMediaElement::kHaveEnoughData); 567 HTMLMediaElement::kHaveEnoughData);
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 ProgressBarCompletion::DOMContentLoaded); 865 ProgressBarCompletion::DOMContentLoaded);
891 STATIC_ASSERT_ENUM( 866 STATIC_ASSERT_ENUM(
892 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames, 867 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames,
893 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames); 868 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames);
894 869
895 static_assert(kSerializedScriptValueVersion == 870 static_assert(kSerializedScriptValueVersion ==
896 SerializedScriptValue::wireFormatVersion, 871 SerializedScriptValue::wireFormatVersion,
897 ""); 872 "");
898 873
899 } // namespace blink 874 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/PlatformEvent.h ('k') | third_party/WebKit/Source/web/WebFrameWidgetBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698