| 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 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 STATIC_ASSERT_ENUM(WebIDBKeyTypeArray, IDBKey::ArrayType); | 540 STATIC_ASSERT_ENUM(WebIDBKeyTypeArray, IDBKey::ArrayType); |
| 541 STATIC_ASSERT_ENUM(WebIDBKeyTypeBinary, IDBKey::BinaryType); | 541 STATIC_ASSERT_ENUM(WebIDBKeyTypeBinary, IDBKey::BinaryType); |
| 542 STATIC_ASSERT_ENUM(WebIDBKeyTypeString, IDBKey::StringType); | 542 STATIC_ASSERT_ENUM(WebIDBKeyTypeString, IDBKey::StringType); |
| 543 STATIC_ASSERT_ENUM(WebIDBKeyTypeDate, IDBKey::DateType); | 543 STATIC_ASSERT_ENUM(WebIDBKeyTypeDate, IDBKey::DateType); |
| 544 STATIC_ASSERT_ENUM(WebIDBKeyTypeNumber, IDBKey::NumberType); | 544 STATIC_ASSERT_ENUM(WebIDBKeyTypeNumber, IDBKey::NumberType); |
| 545 | 545 |
| 546 STATIC_ASSERT_ENUM(WebIDBKeyPathTypeNull, IDBKeyPath::NullType); | 546 STATIC_ASSERT_ENUM(WebIDBKeyPathTypeNull, IDBKeyPath::NullType); |
| 547 STATIC_ASSERT_ENUM(WebIDBKeyPathTypeString, IDBKeyPath::StringType); | 547 STATIC_ASSERT_ENUM(WebIDBKeyPathTypeString, IDBKeyPath::StringType); |
| 548 STATIC_ASSERT_ENUM(WebIDBKeyPathTypeArray, IDBKeyPath::ArrayType); | 548 STATIC_ASSERT_ENUM(WebIDBKeyPathTypeArray, IDBKeyPath::ArrayType); |
| 549 | 549 |
| 550 STATIC_ASSERT_ENUM(WebIDBMetadata::NoIntVersion, IDBDatabaseMetadata::NoIntVersi
on); | 550 STATIC_ASSERT_ENUM(WebIDBMetadata::NoVersion, IDBDatabaseMetadata::NoVersion); |
| 551 | 551 |
| 552 STATIC_ASSERT_ENUM(WebFileSystem::TypeTemporary, FileSystemTypeTemporary); | 552 STATIC_ASSERT_ENUM(WebFileSystem::TypeTemporary, FileSystemTypeTemporary); |
| 553 STATIC_ASSERT_ENUM(WebFileSystem::TypePersistent, FileSystemTypePersistent); | 553 STATIC_ASSERT_ENUM(WebFileSystem::TypePersistent, FileSystemTypePersistent); |
| 554 STATIC_ASSERT_ENUM(WebFileSystem::TypeExternal, FileSystemTypeExternal); | 554 STATIC_ASSERT_ENUM(WebFileSystem::TypeExternal, FileSystemTypeExternal); |
| 555 STATIC_ASSERT_ENUM(WebFileSystem::TypeIsolated, FileSystemTypeIsolated); | 555 STATIC_ASSERT_ENUM(WebFileSystem::TypeIsolated, FileSystemTypeIsolated); |
| 556 STATIC_ASSERT_ENUM(WebFileInfo::TypeUnknown, FileMetadata::TypeUnknown); | 556 STATIC_ASSERT_ENUM(WebFileInfo::TypeUnknown, FileMetadata::TypeUnknown); |
| 557 STATIC_ASSERT_ENUM(WebFileInfo::TypeFile, FileMetadata::TypeFile); | 557 STATIC_ASSERT_ENUM(WebFileInfo::TypeFile, FileMetadata::TypeFile); |
| 558 STATIC_ASSERT_ENUM(WebFileInfo::TypeDirectory, FileMetadata::TypeDirectory); | 558 STATIC_ASSERT_ENUM(WebFileInfo::TypeDirectory, FileMetadata::TypeDirectory); |
| 559 | 559 |
| 560 STATIC_ASSERT_ENUM(WebFileErrorNotFound, FileError::NOT_FOUND_ERR); | 560 STATIC_ASSERT_ENUM(WebFileErrorNotFound, FileError::NOT_FOUND_ERR); |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 STATIC_ASSERT_ENUM(WebFrameLoadType::ReloadFromOrigin, FrameLoadTypeReloadFromOr
igin); | 733 STATIC_ASSERT_ENUM(WebFrameLoadType::ReloadFromOrigin, FrameLoadTypeReloadFromOr
igin); |
| 734 | 734 |
| 735 STATIC_ASSERT_ENUM(FrameDetachType::Remove, WebFrameClient::DetachType::Remove); | 735 STATIC_ASSERT_ENUM(FrameDetachType::Remove, WebFrameClient::DetachType::Remove); |
| 736 STATIC_ASSERT_ENUM(FrameDetachType::Swap, WebFrameClient::DetachType::Swap); | 736 STATIC_ASSERT_ENUM(FrameDetachType::Swap, WebFrameClient::DetachType::Swap); |
| 737 STATIC_ASSERT_ENUM(FrameDetachType::Remove, WebRemoteFrameClient::DetachType::Re
move); | 737 STATIC_ASSERT_ENUM(FrameDetachType::Remove, WebRemoteFrameClient::DetachType::Re
move); |
| 738 STATIC_ASSERT_ENUM(FrameDetachType::Swap, WebRemoteFrameClient::DetachType::Swap
); | 738 STATIC_ASSERT_ENUM(FrameDetachType::Swap, WebRemoteFrameClient::DetachType::Swap
); |
| 739 | 739 |
| 740 static_assert(kSerializedScriptValueVersion == SerializedScriptValue::wireFormat
Version, ""); | 740 static_assert(kSerializedScriptValueVersion == SerializedScriptValue::wireFormat
Version, ""); |
| 741 | 741 |
| 742 } // namespace blink | 742 } // namespace blink |
| OLD | NEW |