Searched refs:schemaVersion (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/plugins/
H A DPluginDatabase.cpp527 static const char schemaVersion = '1'; member in namespace:WebCore
550 if (fileContents.size() < 2 || fileContents.first() != schemaVersion || fileContents.last() != '\0') {
630 char localSchemaVersion = schemaVersion;
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheStorage.cpp563 // Update the schemaVersion when the schema of any the Application Cache
566 static const int schemaVersion = 7; member in namespace:WebCore
571 if (version == schemaVersion)
581 int unusedNumBytes = snprintf(userVersionSQL, sizeof(userVersionSQL), "PRAGMA user_version=%d", schemaVersion);
/external/webkit/Source/WebCore/storage/
H A DIDBLevelDBBackingStore.cpp1448 int64_t schemaVersion; local
1449 if (!getInt(db, metaDataKey, schemaVersion)) {
1450 schemaVersion = 0;
1451 if (!putInt(db, metaDataKey, schemaVersion))
1456 if (schemaVersion)

Completed in 265 milliseconds