Source/WebKit/chromium/ChangeLog

 12012-08-09 Alec Flett <alecflett@chromium.org>
 2
 3 IndexedDB: add AssertMatchingEnums for Direction and TaskType
 4 https://bugs.webkit.org/show_bug.cgi?id=93618
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 These chromium enums were introduced in a separate patch.
 9
 10 * src/AssertMatchingEnums.cpp:
 11
1122012-08-07 Joshua Bell <jsbell@chromium.org>
213
314 Layout Test storage/indexeddb/intversion-omit-parameter.html is flaky

Source/WebKit/chromium/src/AssertMatchingEnums.cpp

4949#include "GeolocationError.h"
5050#include "GeolocationPosition.h"
5151#include "HTMLInputElement.h"
 52#include "IDBCursor.h"
5253#include "IDBDatabaseException.h"
5354#include "IDBFactoryBackendInterface.h"
5455#include "IDBKey.h"
5556#include "IDBKeyPath.h"
5657#include "IDBMetadata.h"
 58#include "IDBTransactionBackendInterface.h"
5759#include "IceOptions.h"
5860#include "IconURL.h"
5961#include "MediaPlayer.h"

8486#include "WebFontDescription.h"
8587#include "WebGeolocationError.h"
8688#include "WebGeolocationPosition.h"
 89#include "WebIDBCursor.h"
8790#include "WebIDBDatabaseException.h"
8891#include "WebIDBFactory.h"
8992#include "WebIDBKey.h"
9093#include "WebIDBKeyPath.h"
9194#include "WebIDBMetadata.h"
 95#include "WebIDBTransaction.h"
9296#include "WebIconURL.h"
9397#include "WebInputElement.h"
9498#include "WebMediaPlayer.h"

@@COMPILE_ASSERT_MATCHING_ENUM(WebIDBKeyPath::StringType, IDBKeyPath::StringType);
482486COMPILE_ASSERT_MATCHING_ENUM(WebIDBKeyPath::ArrayType, IDBKeyPath::ArrayType);
483487
484488COMPILE_ASSERT_MATCHING_ENUM(WebIDBMetadata::NoIntVersion, IDBDatabaseMetadata::NoIntVersion);
 489
 490COMPILE_ASSERT_MATCHING_ENUM(WebIDBCursor::Next, IDBCursor::NEXT);
 491COMPILE_ASSERT_MATCHING_ENUM(WebIDBCursor::NextNoDuplicate, IDBCursor::NEXT_NO_DUPLICATE);
 492COMPILE_ASSERT_MATCHING_ENUM(WebIDBCursor::Prev, IDBCursor::PREV);
 493COMPILE_ASSERT_MATCHING_ENUM(WebIDBCursor::PrevNoDuplicate, IDBCursor::PREV_NO_DUPLICATE);
 494
 495COMPILE_ASSERT_MATCHING_ENUM(WebIDBTransaction::PreemptiveTask, IDBTransactionBackendInterface::PreemptiveTask);
 496COMPILE_ASSERT_MATCHING_ENUM(WebIDBTransaction::NormalTask, IDBTransactionBackendInterface::NormalTask);
485497#endif
486498
487499#if ENABLE(FILE_SYSTEM)