WebKit Bugzilla
Attachment 373053 Details for
Bug 199286
: Fix build error on WebCore when disabling ENABLE_INDEXED_DATABASE.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
PATCH
bug199286.diff (text/plain), 1.58 KB, created by
Basuke Suzuki
on 2019-06-27 14:24:33 PDT
(
hide
)
Description:
PATCH
Filename:
MIME Type:
Creator:
Basuke Suzuki
Created:
2019-06-27 14:24:33 PDT
Size:
1.58 KB
patch
obsolete
>diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 2aab2cedc71..9f8af1443da 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,12 @@ >+2019-06-27 Basuke Suzuki <Basuke.Suzuki@sony.com> >+ >+ Fix build error on WebCore when disabling ENABLE_INDEXED_DATABASE. >+ https://bugs.webkit.org/show_bug.cgi?id=199286 >+ >+ Unreviewed build fix. >+ >+ * testing/Internals.cpp: >+ > 2019-05-29 Zalan Bujtas <zalan@apple.com> > > [LFC][IFC] Move Line class to a dedicated file >diff --git a/Source/WebCore/testing/Internals.cpp b/Source/WebCore/testing/Internals.cpp >index 510ef0d31b6..cfbb55afe43 100644 >--- a/Source/WebCore/testing/Internals.cpp >+++ b/Source/WebCore/testing/Internals.cpp >@@ -98,7 +98,6 @@ > #include "HistoryItem.h" > #include "HitTestResult.h" > #include "IDBRequest.h" >-#include "IDBTransaction.h" > #include "InspectorClient.h" > #include "InspectorController.h" > #include "InspectorFrontendClientLocal.h" >@@ -273,6 +272,10 @@ > #include "PointerLockController.h" > #endif > >+#if ENABLE(INDEXED_DATABASE) >+#include "IDBTransaction.h" >+#endif >+ > #if USE(QUICK_LOOK) > #include "MockPreviewLoaderClient.h" > #include "PreviewLoader.h" >@@ -2400,10 +2403,12 @@ ExceptionOr<unsigned> Internals::countFindMatches(const String& text, const Vect > return document->page()->countFindMatches(text, parsedOptions.releaseReturnValue(), 1000); > } > >+#if ENABLE(INDEXED_DATABASE) > unsigned Internals::numberOfIDBTransactions() const > { > return IDBTransaction::numberOfIDBTransactions; > } >+#endif > > unsigned Internals::numberOfLiveNodes() const > {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 199286
:
373053
|
373067
|
373070