Changeset 156439 in webkit


Ignore:
Timestamp:
Sep 25, 2013 6:03:17 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r156432.
http://trac.webkit.org/changeset/156432
https://bugs.webkit.org/show_bug.cgi?id=121932

some integer conversion things that need brady to fix
(Requested by thorton on #webkit).

Source/JavaScriptCore:

  • Configurations/FeatureDefines.xcconfig:

Source/WebCore:

  • Configurations/FeatureDefines.xcconfig:
  • Modules/indexeddb/IDBFactory.h:

(WebCore::IDBFactory::create):

  • WebCore.xcodeproj/project.pbxproj:

Source/WebKit/mac:

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

  • Configurations/FeatureDefines.xcconfig:
Location:
trunk/Source
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r156438 r156439  
     12013-09-25  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r156432.
     4        http://trac.webkit.org/changeset/156432
     5        https://bugs.webkit.org/show_bug.cgi?id=121932
     6
     7        some integer conversion things that need brady to fix
     8        (Requested by thorton on #webkit).
     9
     10        * Configurations/FeatureDefines.xcconfig:
     11
    1122013-09-25  Anders Carlsson  <andersca@apple.com>
    213
  • trunk/Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig

    r156432 r156439  
    9696ENABLE_ICONDATABASE_macosx = ENABLE_ICONDATABASE;
    9797ENABLE_IFRAME_SEAMLESS = ENABLE_IFRAME_SEAMLESS;
    98 ENABLE_INDEXED_DATABASE = ENABLE_INDEXED_DATABASE;
     98ENABLE_INDEXED_DATABASE = ;
    9999ENABLE_INDIE_UI = ENABLE_INDIE_UI;
    100100ENABLE_INPUT_SPEECH = ;
  • trunk/Source/WebCore/ChangeLog

    r156436 r156439  
     12013-09-25  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r156432.
     4        http://trac.webkit.org/changeset/156432
     5        https://bugs.webkit.org/show_bug.cgi?id=121932
     6
     7        some integer conversion things that need brady to fix
     8        (Requested by thorton on #webkit).
     9
     10        * Configurations/FeatureDefines.xcconfig:
     11        * Modules/indexeddb/IDBFactory.h:
     12        (WebCore::IDBFactory::create):
     13        * WebCore.xcodeproj/project.pbxproj:
     14
    1152013-09-25  Alex Christensen  <alex.christensen@flexsim.com>
    216
  • trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig

    r156432 r156439  
    9696ENABLE_ICONDATABASE_macosx = ENABLE_ICONDATABASE;
    9797ENABLE_IFRAME_SEAMLESS = ENABLE_IFRAME_SEAMLESS;
    98 ENABLE_INDEXED_DATABASE = ENABLE_INDEXED_DATABASE;
     98ENABLE_INDEXED_DATABASE = ;
    9999ENABLE_INDIE_UI = ENABLE_INDIE_UI;
    100100ENABLE_INPUT_SPEECH = ;
  • trunk/Source/WebCore/Modules/indexeddb/IDBFactory.h

    r156432 r156439  
    5151    static PassRefPtr<IDBFactory> create(IDBFactoryBackendInterface* factory)
    5252    {
    53         // FIXME: While the feature is under development we'll handle a null factory backend here,
    54         // returning null, so javascript can't try to use the feature.
    55         // Once the feature is fully functional we should remove the null factory backend.
    56         return factory ? adoptRef(new IDBFactory(factory)) : nullptr;
     53        return adoptRef(new IDBFactory(factory));
    5754    }
    5855    ~IDBFactory();
  • trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj

    r156432 r156439  
    16441644                511EF2D017F0FDF100E4FA16 /* JSIDBDatabaseCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511EF2CD17F0FDF100E4FA16 /* JSIDBDatabaseCustom.cpp */; };
    16451645                511EF2D117F0FDF100E4FA16 /* JSIDBObjectStoreCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511EF2CE17F0FDF100E4FA16 /* JSIDBObjectStoreCustom.cpp */; };
     1646                511EF33917F23B7300E4FA16 /* IDBBackingStoreLevelDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511EF32B17F23B6900E4FA16 /* IDBBackingStoreLevelDB.cpp */; };
     1647                511EF33A17F23B7300E4FA16 /* IDBCursorBackendLevelDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511EF32D17F23B6900E4FA16 /* IDBCursorBackendLevelDB.cpp */; };
     1648                511EF33B17F23B7300E4FA16 /* IDBDatabaseBackendLevelDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511EF32F17F23B6900E4FA16 /* IDBDatabaseBackendLevelDB.cpp */; };
     1649                511EF33C17F23B7300E4FA16 /* IDBFactoryBackendLevelDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511EF33117F23B6900E4FA16 /* IDBFactoryBackendLevelDB.cpp */; };
     1650                511EF33D17F23B7300E4FA16 /* IDBLevelDBCoding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511EF33317F23B6900E4FA16 /* IDBLevelDBCoding.cpp */; };
     1651                511EF33E17F23B7300E4FA16 /* IDBObjectStoreBackendLevelDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511EF33517F23B6900E4FA16 /* IDBObjectStoreBackendLevelDB.cpp */; };
     1652                511EF33F17F23B7300E4FA16 /* IDBTransactionBackendLevelDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511EF33717F23B6900E4FA16 /* IDBTransactionBackendLevelDB.cpp */; };
    16461653                511F23190DC160DA004F0032 /* StorageThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511F23150DC160DA004F0032 /* StorageThread.cpp */; };
    16471654                511F231A0DC160DA004F0032 /* StorageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 511F23160DC160DA004F0032 /* StorageThread.h */; };
     
    17271734                51C81B8A0C4422F70019ECE3 /* FTPDirectoryParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C81B880C4422F70019ECE3 /* FTPDirectoryParser.h */; };
    17281735                51CBFC990D10E483002DBF51 /* CachedFramePlatformData.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CBFC980D10E483002DBF51 /* CachedFramePlatformData.h */; settings = {ATTRIBUTES = (Private, ); }; };
     1736                51CEFB2B17F2492900ACAA18 /* IDBTransactionCoordinatorLevelDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51CEFB2917F2492100ACAA18 /* IDBTransactionCoordinatorLevelDB.cpp */; };
    17291737                51D0C5160DAA90B7003B3831 /* JSStorageCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51D0C5150DAA90B7003B3831 /* JSStorageCustom.cpp */; };
    17301738                51DCE8020CAC9F1C00488358 /* JSSQLResultSetRowListCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51DCE8010CAC9F1C00488358 /* JSSQLResultSetRowListCustom.cpp */; };
     
    82228230                511EF2CD17F0FDF100E4FA16 /* JSIDBDatabaseCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSIDBDatabaseCustom.cpp; sourceTree = "<group>"; };
    82238231                511EF2CE17F0FDF100E4FA16 /* JSIDBObjectStoreCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSIDBObjectStoreCustom.cpp; sourceTree = "<group>"; };
     8232                511EF32B17F23B6900E4FA16 /* IDBBackingStoreLevelDB.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IDBBackingStoreLevelDB.cpp; path = Modules/indexeddb/leveldb/IDBBackingStoreLevelDB.cpp; sourceTree = "<group>"; };
     8233                511EF32C17F23B6900E4FA16 /* IDBBackingStoreLevelDB.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IDBBackingStoreLevelDB.h; path = Modules/indexeddb/leveldb/IDBBackingStoreLevelDB.h; sourceTree = "<group>"; };
     8234                511EF32D17F23B6900E4FA16 /* IDBCursorBackendLevelDB.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IDBCursorBackendLevelDB.cpp; path = Modules/indexeddb/leveldb/IDBCursorBackendLevelDB.cpp; sourceTree = "<group>"; };
     8235                511EF32E17F23B6900E4FA16 /* IDBCursorBackendLevelDB.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IDBCursorBackendLevelDB.h; path = Modules/indexeddb/leveldb/IDBCursorBackendLevelDB.h; sourceTree = "<group>"; };
     8236                511EF32F17F23B6900E4FA16 /* IDBDatabaseBackendLevelDB.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IDBDatabaseBackendLevelDB.cpp; path = Modules/indexeddb/leveldb/IDBDatabaseBackendLevelDB.cpp; sourceTree = "<group>"; };
     8237                511EF33017F23B6900E4FA16 /* IDBDatabaseBackendLevelDB.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IDBDatabaseBackendLevelDB.h; path = Modules/indexeddb/leveldb/IDBDatabaseBackendLevelDB.h; sourceTree = "<group>"; };
     8238                511EF33117F23B6900E4FA16 /* IDBFactoryBackendLevelDB.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IDBFactoryBackendLevelDB.cpp; path = Modules/indexeddb/leveldb/IDBFactoryBackendLevelDB.cpp; sourceTree = "<group>"; };
     8239                511EF33217F23B6900E4FA16 /* IDBFactoryBackendLevelDB.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IDBFactoryBackendLevelDB.h; path = Modules/indexeddb/leveldb/IDBFactoryBackendLevelDB.h; sourceTree = "<group>"; };
     8240                511EF33317F23B6900E4FA16 /* IDBLevelDBCoding.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IDBLevelDBCoding.cpp; path = Modules/indexeddb/leveldb/IDBLevelDBCoding.cpp; sourceTree = "<group>"; };
     8241                511EF33417F23B6900E4FA16 /* IDBLevelDBCoding.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IDBLevelDBCoding.h; path = Modules/indexeddb/leveldb/IDBLevelDBCoding.h; sourceTree = "<group>"; };
     8242                511EF33517F23B6900E4FA16 /* IDBObjectStoreBackendLevelDB.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IDBObjectStoreBackendLevelDB.cpp; path = Modules/indexeddb/leveldb/IDBObjectStoreBackendLevelDB.cpp; sourceTree = "<group>"; };
     8243                511EF33617F23B6900E4FA16 /* IDBObjectStoreBackendLevelDB.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IDBObjectStoreBackendLevelDB.h; path = Modules/indexeddb/leveldb/IDBObjectStoreBackendLevelDB.h; sourceTree = "<group>"; };
     8244                511EF33717F23B6900E4FA16 /* IDBTransactionBackendLevelDB.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IDBTransactionBackendLevelDB.cpp; path = Modules/indexeddb/leveldb/IDBTransactionBackendLevelDB.cpp; sourceTree = "<group>"; };
     8245                511EF33817F23B6900E4FA16 /* IDBTransactionBackendLevelDB.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IDBTransactionBackendLevelDB.h; path = Modules/indexeddb/leveldb/IDBTransactionBackendLevelDB.h; sourceTree = "<group>"; };
    82248246                511F23150DC160DA004F0032 /* StorageThread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StorageThread.cpp; sourceTree = "<group>"; };
    82258247                511F23160DC160DA004F0032 /* StorageThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageThread.h; sourceTree = "<group>"; };
     
    83098331                51C81B880C4422F70019ECE3 /* FTPDirectoryParser.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = FTPDirectoryParser.h; sourceTree = "<group>"; };
    83108332                51CBFC980D10E483002DBF51 /* CachedFramePlatformData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CachedFramePlatformData.h; sourceTree = "<group>"; };
     8333                51CEFB2917F2492100ACAA18 /* IDBTransactionCoordinatorLevelDB.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IDBTransactionCoordinatorLevelDB.cpp; path = Modules/indexeddb/leveldb/IDBTransactionCoordinatorLevelDB.cpp; sourceTree = "<group>"; };
     8334                51CEFB2A17F2492100ACAA18 /* IDBTransactionCoordinatorLevelDB.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IDBTransactionCoordinatorLevelDB.h; path = Modules/indexeddb/leveldb/IDBTransactionCoordinatorLevelDB.h; sourceTree = "<group>"; };
    83118335                51D0C5150DAA90B7003B3831 /* JSStorageCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSStorageCustom.cpp; sourceTree = "<group>"; };
    83128336                51DCE8010CAC9F1C00488358 /* JSSQLResultSetRowListCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSSQLResultSetRowListCustom.cpp; sourceTree = "<group>"; };
     
    1479814822                        sourceTree = "<group>";
    1479914823                };
     14824                511EF32A17F236E900E4FA16 /* leveldb */ = {
     14825                        isa = PBXGroup;
     14826                        children = (
     14827                                511EF32B17F23B6900E4FA16 /* IDBBackingStoreLevelDB.cpp */,
     14828                                511EF32C17F23B6900E4FA16 /* IDBBackingStoreLevelDB.h */,
     14829                                511EF32D17F23B6900E4FA16 /* IDBCursorBackendLevelDB.cpp */,
     14830                                511EF32E17F23B6900E4FA16 /* IDBCursorBackendLevelDB.h */,
     14831                                511EF32F17F23B6900E4FA16 /* IDBDatabaseBackendLevelDB.cpp */,
     14832                                511EF33017F23B6900E4FA16 /* IDBDatabaseBackendLevelDB.h */,
     14833                                511EF33117F23B6900E4FA16 /* IDBFactoryBackendLevelDB.cpp */,
     14834                                511EF33217F23B6900E4FA16 /* IDBFactoryBackendLevelDB.h */,
     14835                                511EF33317F23B6900E4FA16 /* IDBLevelDBCoding.cpp */,
     14836                                511EF33417F23B6900E4FA16 /* IDBLevelDBCoding.h */,
     14837                                511EF33517F23B6900E4FA16 /* IDBObjectStoreBackendLevelDB.cpp */,
     14838                                511EF33617F23B6900E4FA16 /* IDBObjectStoreBackendLevelDB.h */,
     14839                                511EF33717F23B6900E4FA16 /* IDBTransactionBackendLevelDB.cpp */,
     14840                                511EF33817F23B6900E4FA16 /* IDBTransactionBackendLevelDB.h */,
     14841                                51CEFB2917F2492100ACAA18 /* IDBTransactionCoordinatorLevelDB.cpp */,
     14842                                51CEFB2A17F2492100ACAA18 /* IDBTransactionCoordinatorLevelDB.h */,
     14843                        );
     14844                        name = leveldb;
     14845                        sourceTree = "<group>";
     14846                };
    1480014847                5126E6B60A2E3AEF005C29FA /* icon */ = {
    1480114848                        isa = PBXGroup;
     
    1669216739                        isa = PBXGroup;
    1669316740                        children = (
     16741                                511EF32A17F236E900E4FA16 /* leveldb */,
    1669416742                                9712A55415004EDA0048AF10 /* DOMWindowIndexedDatabase.cpp */,
    1669516743                                9712A55515004EDA0048AF10 /* DOMWindowIndexedDatabase.h */,
     
    2534025388                                BC5A12DF0DC0414800C9AFAD /* CSSReflectValue.cpp in Sources */,
    2534125389                                A80E6D060A1989CA007FB8C5 /* CSSRule.cpp in Sources */,
     25390                                511EF33917F23B7300E4FA16 /* IDBBackingStoreLevelDB.cpp in Sources */,
    2534225391                                A80E6D090A1989CA007FB8C5 /* CSSRuleList.cpp in Sources */,
    2534325392                                371F51A20D262FA000ECE0D5 /* CSSSegmentedFontFace.cpp in Sources */,
     
    2584525894                                A8DF3FD1097FA0FC0052981B /* HTMLCollection.cpp in Sources */,
    2584625895                                977B3864122883E900B81FF8 /* HTMLConstructionSite.cpp in Sources */,
     25896                                511EF33C17F23B7300E4FA16 /* IDBFactoryBackendLevelDB.cpp in Sources */,
    2584725897                                5D4F51DF132725480016F541 /* HTMLConverter.mm in Sources */,
    2584825898                                F5C041DA0FFCA7CE00839D4A /* HTMLDataListElement.cpp in Sources */,
     
    2630126351                                1AE2ABA60A1CE90500B42B25 /* JSHTMLParagraphElement.cpp in Sources */,
    2630226352                                1AE2ABA80A1CE90500B42B25 /* JSHTMLParamElement.cpp in Sources */,
     26353                                511EF33A17F23B7300E4FA16 /* IDBCursorBackendLevelDB.cpp in Sources */,
    2630326354                                1AE2ABAA0A1CE90500B42B25 /* JSHTMLPreElement.cpp in Sources */,
    2630426355                                A4226E5A1163D667008B8397 /* JSHTMLProgressElement.cpp in Sources */,
     
    2711127162                                8C6EA61911EF7E0400FD8EE3 /* RuntimeEnabledFeatures.cpp in Sources */,
    2711227163                                49E911CA0EF86D47009D0CAF /* ScaleTransformOperation.cpp in Sources */,
     27164                                511EF33D17F23B7300E4FA16 /* IDBLevelDBCoding.cpp in Sources */,
    2711327165                                5DFE8F560D16477B0076E937 /* ScheduledAction.cpp in Sources */,
    2711427166                                5162C7F411F77EFB00612EFE /* SchemeRegistry.cpp in Sources */,
     
    2723727289                                97BC6A3E1505F081001B74AC /* SQLException.cpp in Sources */,
    2723827290                                1A2E6E7A0CC556D5004A2062 /* SQLiteAuthorizer.cpp in Sources */,
     27291                                511EF33E17F23B7300E4FA16 /* IDBObjectStoreBackendLevelDB.cpp in Sources */,
    2723927292                                1A2246490CC98DDB00C05240 /* SQLiteDatabase.cpp in Sources */,
    2724027293                                B5A684240FFABEAA00D24689 /* SQLiteFileSystem.cpp in Sources */,
     
    2734127394                                43B9336A13B261B1004584BF /* SVGAnimatedPointList.cpp in Sources */,
    2734227395                                431A302113B89DCC007791E4 /* SVGAnimatedPreserveAspectRatio.cpp in Sources */,
     27396                                511EF33F17F23B7300E4FA16 /* IDBTransactionBackendLevelDB.cpp in Sources */,
    2734327397                                836FBCEC178C117F00B21A15 /* SVGAnimatedProperty.cpp in Sources */,
    2734427398                                43142E7A13B1E97700F1C871 /* SVGAnimatedRect.cpp in Sources */,
     
    2746327517                                B2227A8E0D00BF220071B782 /* SVGPolyElement.cpp in Sources */,
    2746427518                                B2227A900D00BF220071B782 /* SVGPolygonElement.cpp in Sources */,
     27519                                51CEFB2B17F2492900ACAA18 /* IDBTransactionCoordinatorLevelDB.cpp in Sources */,
    2746527520                                B2227A930D00BF220071B782 /* SVGPolylineElement.cpp in Sources */,
    2746627521                                B543B85717EB758F003BE93A /* SVGPropertyInfo.cpp in Sources */,
     
    2752427579                                142B97C913138943008BEF4B /* TextControlInnerElements.cpp in Sources */,
    2752527580                                97BC84B312371180000C6161 /* TextDocument.cpp in Sources */,
     27581                                511EF33B17F23B7300E4FA16 /* IDBDatabaseBackendLevelDB.cpp in Sources */,
    2752627582                                97BC84831236FD93000C6161 /* TextDocumentParser.cpp in Sources */,
    2752727583                                B2C3DA460D006C1D00EF6F26 /* TextEncoding.cpp in Sources */,
  • trunk/Source/WebKit/mac/ChangeLog

    r156432 r156439  
     12013-09-25  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r156432.
     4        http://trac.webkit.org/changeset/156432
     5        https://bugs.webkit.org/show_bug.cgi?id=121932
     6
     7        some integer conversion things that need brady to fix
     8        (Requested by thorton on #webkit).
     9
     10        * Configurations/FeatureDefines.xcconfig:
     11
    1122013-09-25  Brady Eidson  <beidson@apple.com>
    213
  • trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig

    r156432 r156439  
    9696ENABLE_ICONDATABASE_macosx = ENABLE_ICONDATABASE;
    9797ENABLE_IFRAME_SEAMLESS = ENABLE_IFRAME_SEAMLESS;
    98 ENABLE_INDEXED_DATABASE = ENABLE_INDEXED_DATABASE;
     98ENABLE_INDEXED_DATABASE = ;
    9999ENABLE_INDIE_UI = ENABLE_INDIE_UI;
    100100ENABLE_INPUT_SPEECH = ;
  • trunk/Source/WebKit2/ChangeLog

    r156432 r156439  
     12013-09-25  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r156432.
     4        http://trac.webkit.org/changeset/156432
     5        https://bugs.webkit.org/show_bug.cgi?id=121932
     6
     7        some integer conversion things that need brady to fix
     8        (Requested by thorton on #webkit).
     9
     10        * Configurations/FeatureDefines.xcconfig:
     11
    1122013-09-25  Brady Eidson  <beidson@apple.com>
    213
  • trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig

    r156432 r156439  
    9696ENABLE_ICONDATABASE_macosx = ENABLE_ICONDATABASE;
    9797ENABLE_IFRAME_SEAMLESS = ENABLE_IFRAME_SEAMLESS;
    98 ENABLE_INDEXED_DATABASE = ENABLE_INDEXED_DATABASE;
     98ENABLE_INDEXED_DATABASE = ;
    9999ENABLE_INDIE_UI = ENABLE_INDIE_UI;
    100100ENABLE_INPUT_SPEECH = ;
Note: See TracChangeset for help on using the changeset viewer.