| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #include "core/page/InjectedStyleSheets.h" | 51 #include "core/page/InjectedStyleSheets.h" |
| 52 #include "core/page/PageVisibilityState.h" | 52 #include "core/page/PageVisibilityState.h" |
| 53 #include "core/frame/Settings.h" | 53 #include "core/frame/Settings.h" |
| 54 #include "core/rendering/style/RenderStyleConstants.h" | 54 #include "core/rendering/style/RenderStyleConstants.h" |
| 55 #include "modules/geolocation/GeolocationError.h" | 55 #include "modules/geolocation/GeolocationError.h" |
| 56 #include "modules/geolocation/GeolocationPosition.h" | 56 #include "modules/geolocation/GeolocationPosition.h" |
| 57 #include "modules/indexeddb/IDBKey.h" | 57 #include "modules/indexeddb/IDBKey.h" |
| 58 #include "modules/indexeddb/IDBKeyPath.h" | 58 #include "modules/indexeddb/IDBKeyPath.h" |
| 59 #include "modules/indexeddb/IDBMetadata.h" | 59 #include "modules/indexeddb/IDBMetadata.h" |
| 60 #include "modules/indexeddb/IndexedDB.h" | 60 #include "modules/indexeddb/IndexedDB.h" |
| 61 #include "modules/indexeddb/chromium/IDBFactoryBackendInterfaceChromium.h" | |
| 62 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" | 61 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" |
| 63 #include "modules/notifications/NotificationClient.h" | 62 #include "modules/notifications/NotificationClient.h" |
| 64 #include "modules/quota/DeprecatedStorageQuota.h" | 63 #include "modules/quota/DeprecatedStorageQuota.h" |
| 65 #include "modules/speech/SpeechRecognitionError.h" | 64 #include "modules/speech/SpeechRecognitionError.h" |
| 66 #include "platform/Cursor.h" | 65 #include "platform/Cursor.h" |
| 67 #include "platform/FileMetadata.h" | 66 #include "platform/FileMetadata.h" |
| 68 #include "platform/FileSystemType.h" | 67 #include "platform/FileSystemType.h" |
| 69 #include "platform/PlatformMouseEvent.h" | 68 #include "platform/PlatformMouseEvent.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" |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 COMPILE_ASSERT_MATCHING_ENUM(WebCustomHandlersRegistered, NavigatorContentUtilsC
lient::CustomHandlersRegistered); | 616 COMPILE_ASSERT_MATCHING_ENUM(WebCustomHandlersRegistered, NavigatorContentUtilsC
lient::CustomHandlersRegistered); |
| 618 COMPILE_ASSERT_MATCHING_ENUM(WebCustomHandlersDeclined, NavigatorContentUtilsCli
ent::CustomHandlersDeclined); | 617 COMPILE_ASSERT_MATCHING_ENUM(WebCustomHandlersDeclined, NavigatorContentUtilsCli
ent::CustomHandlersDeclined); |
| 619 | 618 |
| 620 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionNone, TouchActionNone); | 619 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionNone, TouchActionNone); |
| 621 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionAuto, TouchActionAuto); | 620 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionAuto, TouchActionAuto); |
| 622 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPanX, TouchActionPanX); | 621 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPanX, TouchActionPanX); |
| 623 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPanY, TouchActionPanY); | 622 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPanY, TouchActionPanY); |
| 624 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPinchZoom, TouchActionPinchZoom); | 623 COMPILE_ASSERT_MATCHING_ENUM(WebTouchActionPinchZoom, TouchActionPinchZoom); |
| 625 | 624 |
| 626 COMPILE_ASSERT_MATCHING_UINT64(kSerializedScriptValueVersion, SerializedScriptVa
lue::wireFormatVersion); | 625 COMPILE_ASSERT_MATCHING_UINT64(kSerializedScriptValueVersion, SerializedScriptVa
lue::wireFormatVersion); |
| OLD | NEW |