RESOLVED FIXED 127632
Remove some iOS #ifdefs by adding SQLiteDatabaseTracker to all the builds
https://bugs.webkit.org/show_bug.cgi?id=127632
Summary Remove some iOS #ifdefs by adding SQLiteDatabaseTracker to all the builds
Sam Weinig
Reported 2014-01-25 14:43:18 PST
Remove some iOS #ifdefs by adding SQLiteDatabaseTracker to all the builds
Attachments
Patch (49.36 KB, patch)
2014-01-25 14:45 PST, Sam Weinig
darin: review+
Sam Weinig
Comment 1 2014-01-25 14:45:56 PST
Darin Adler
Comment 2 2014-01-25 14:48:23 PST
Comment on attachment 222236 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=222236&action=review > Source/WebCore/platform/sql/SQLiteDatabaseTracker.cpp:37 > +static SQLiteDatabaseTrackerClient* s_staticSQLiteDatabaseTrackerClient = 0; nullptr (or omit) > Source/WebCore/platform/sql/SQLiteDatabaseTracker.cpp:40 > +static Mutex& transactionInProgressMutex() Can we use C++ standard library locking instead of WTF locking? > Source/WebCore/platform/sql/SQLiteDatabaseTracker.h:43 > +#if !ASSERT_DISABLED > +bool hasTransactionInProgress(); > +#endif // !ASSERT_DISABLED That endif comment. Really?
Sam Weinig
Comment 3 2014-01-25 16:26:30 PST
(In reply to comment #2) > (From update of attachment 222236 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=222236&action=review > > > Source/WebCore/platform/sql/SQLiteDatabaseTracker.cpp:37 > > +static SQLiteDatabaseTrackerClient* s_staticSQLiteDatabaseTrackerClient = 0; > > nullptr (or omit) > > > Source/WebCore/platform/sql/SQLiteDatabaseTracker.cpp:40 > > +static Mutex& transactionInProgressMutex() > > Can we use C++ standard library locking instead of WTF locking? > > > Source/WebCore/platform/sql/SQLiteDatabaseTracker.h:43 > > +#if !ASSERT_DISABLED > > +bool hasTransactionInProgress(); > > +#endif // !ASSERT_DISABLED > > That endif comment. Really? Heh, I just moved the file, but I will clean it up before landing.
Sam Weinig
Comment 4 2014-01-25 16:31:57 PST
Note You need to log in before you can comment on or make changes to this bug.