| 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 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 767 STATIC_ASSERT_ENUM(WebInitialCommitInChildFrame, InitialCommitInChildFrame); | 767 STATIC_ASSERT_ENUM(WebInitialCommitInChildFrame, InitialCommitInChildFrame); |
| 768 STATIC_ASSERT_ENUM(WebHistoryInertCommit, HistoryInertCommit); | 768 STATIC_ASSERT_ENUM(WebHistoryInertCommit, HistoryInertCommit); |
| 769 | 769 |
| 770 STATIC_ASSERT_ENUM(WebHistorySameDocumentLoad, HistorySameDocumentLoad); | 770 STATIC_ASSERT_ENUM(WebHistorySameDocumentLoad, HistorySameDocumentLoad); |
| 771 STATIC_ASSERT_ENUM(WebHistoryDifferentDocumentLoad, | 771 STATIC_ASSERT_ENUM(WebHistoryDifferentDocumentLoad, |
| 772 HistoryDifferentDocumentLoad); | 772 HistoryDifferentDocumentLoad); |
| 773 | 773 |
| 774 STATIC_ASSERT_ENUM(WebHistoryScrollRestorationManual, ScrollRestorationManual); | 774 STATIC_ASSERT_ENUM(WebHistoryScrollRestorationManual, ScrollRestorationManual); |
| 775 STATIC_ASSERT_ENUM(WebHistoryScrollRestorationAuto, ScrollRestorationAuto); | 775 STATIC_ASSERT_ENUM(WebHistoryScrollRestorationAuto, ScrollRestorationAuto); |
| 776 | 776 |
| 777 STATIC_ASSERT_ENUM(WebConsoleMessage::LevelDebug, DebugMessageLevel); | 777 STATIC_ASSERT_ENUM(WebConsoleMessage::LevelVerbose, VerboseMessageLevel); |
| 778 STATIC_ASSERT_ENUM(WebConsoleMessage::LevelLog, LogMessageLevel); | 778 STATIC_ASSERT_ENUM(WebConsoleMessage::LevelInfo, InfoMessageLevel); |
| 779 STATIC_ASSERT_ENUM(WebConsoleMessage::LevelWarning, WarningMessageLevel); | 779 STATIC_ASSERT_ENUM(WebConsoleMessage::LevelWarning, WarningMessageLevel); |
| 780 STATIC_ASSERT_ENUM(WebConsoleMessage::LevelError, ErrorMessageLevel); | 780 STATIC_ASSERT_ENUM(WebConsoleMessage::LevelError, ErrorMessageLevel); |
| 781 STATIC_ASSERT_ENUM(WebConsoleMessage::LevelInfo, InfoMessageLevel); | |
| 782 | 781 |
| 783 STATIC_ASSERT_ENUM(WebCustomHandlersNew, | 782 STATIC_ASSERT_ENUM(WebCustomHandlersNew, |
| 784 NavigatorContentUtilsClient::CustomHandlersNew); | 783 NavigatorContentUtilsClient::CustomHandlersNew); |
| 785 STATIC_ASSERT_ENUM(WebCustomHandlersRegistered, | 784 STATIC_ASSERT_ENUM(WebCustomHandlersRegistered, |
| 786 NavigatorContentUtilsClient::CustomHandlersRegistered); | 785 NavigatorContentUtilsClient::CustomHandlersRegistered); |
| 787 STATIC_ASSERT_ENUM(WebCustomHandlersDeclined, | 786 STATIC_ASSERT_ENUM(WebCustomHandlersDeclined, |
| 788 NavigatorContentUtilsClient::CustomHandlersDeclined); | 787 NavigatorContentUtilsClient::CustomHandlersDeclined); |
| 789 | 788 |
| 790 STATIC_ASSERT_ENUM(WebTouchActionNone, TouchActionNone); | 789 STATIC_ASSERT_ENUM(WebTouchActionNone, TouchActionNone); |
| 791 STATIC_ASSERT_ENUM(WebTouchActionPanLeft, TouchActionPanLeft); | 790 STATIC_ASSERT_ENUM(WebTouchActionPanLeft, TouchActionPanLeft); |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 885 ProgressBarCompletion::DOMContentLoaded); | 884 ProgressBarCompletion::DOMContentLoaded); |
| 886 STATIC_ASSERT_ENUM( | 885 STATIC_ASSERT_ENUM( |
| 887 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames, | 886 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames, |
| 888 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames); | 887 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames); |
| 889 | 888 |
| 890 static_assert(kSerializedScriptValueVersion == | 889 static_assert(kSerializedScriptValueVersion == |
| 891 SerializedScriptValue::wireFormatVersion, | 890 SerializedScriptValue::wireFormatVersion, |
| 892 ""); | 891 ""); |
| 893 | 892 |
| 894 } // namespace blink | 893 } // namespace blink |
| OLD | NEW |