| 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 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 COMPILE_ASSERT_MATCHING_ENUM(WebCustomHandlersNew, NavigatorContentUtilsClient::
CustomHandlersNew); | 606 COMPILE_ASSERT_MATCHING_ENUM(WebCustomHandlersNew, NavigatorContentUtilsClient::
CustomHandlersNew); |
| 607 COMPILE_ASSERT_MATCHING_ENUM(WebCustomHandlersRegistered, NavigatorContentUtilsC
lient::CustomHandlersRegistered); | 607 COMPILE_ASSERT_MATCHING_ENUM(WebCustomHandlersRegistered, NavigatorContentUtilsC
lient::CustomHandlersRegistered); |
| 608 COMPILE_ASSERT_MATCHING_ENUM(WebCustomHandlersDeclined, NavigatorContentUtilsCli
ent::CustomHandlersDeclined); | 608 COMPILE_ASSERT_MATCHING_ENUM(WebCustomHandlersDeclined, NavigatorContentUtilsCli
ent::CustomHandlersDeclined); |
| 609 | 609 |
| 610 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionNone, TouchActionNone); | 610 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionNone, TouchActionNone); |
| 611 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionAuto, TouchActionAuto); | 611 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionAuto, TouchActionAuto); |
| 612 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPanX, TouchActionPanX); | 612 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPanX, TouchActionPanX); |
| 613 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPanY, TouchActionPanY); | 613 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPanY, TouchActionPanY); |
| 614 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPinchZoom, TouchActionPinchZoom); | 614 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPinchZoom, TouchActionPinchZoom); |
| 615 | 615 |
| 616 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOff, V8CacheOff); |
| 617 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheParse, V8CacheParse); |
| 618 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheCode, V8CacheCode); |
| 619 |
| 616 COMPILE_ASSERT_MATCHING_UINT64(kSerializedScriptValueVersion, SerializedScriptVa
lue::wireFormatVersion); | 620 COMPILE_ASSERT_MATCHING_UINT64(kSerializedScriptValueVersion, SerializedScriptVa
lue::wireFormatVersion); |
| 617 | 621 |
| 618 } // namespace blink | 622 } // namespace blink |
| OLD | NEW |