summaryrefslogtreecommitdiff
path: root/chromium/components/history/core/browser/history_backend.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/history/core/browser/history_backend.h')
-rw-r--r--chromium/components/history/core/browser/history_backend.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chromium/components/history/core/browser/history_backend.h b/chromium/components/history/core/browser/history_backend.h
index bbf6b21b217..7bf1c9734d3 100644
--- a/chromium/components/history/core/browser/history_backend.h
+++ b/chromium/components/history/core/browser/history_backend.h
@@ -477,10 +477,12 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>,
bool GetURLByID(URLID url_id, URLRow* url_row);
+#if !defined(TOOLKIT_QT)
// Returns the sync controller delegate for syncing typed urls. The returned
// delegate is owned by `this` object.
base::WeakPtr<syncer::ModelTypeControllerDelegate>
GetTypedURLSyncControllerDelegate();
+#endif // !defined(TOOLKIT_QT)
// Deleting ------------------------------------------------------------------
@@ -564,7 +566,9 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>,
ExpireHistoryBackend* expire_backend() { return &expirer_; }
#endif
+#if !defined(TOOLKIT_QT)
void SetTypedURLSyncBridgeForTest(std::unique_ptr<TypedURLSyncBridge> bridge);
+#endif
// Returns true if the passed visit time is already expired (used by the sync
// code to avoid syncing visits that would immediately be expired).
@@ -815,10 +819,12 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>,
// List of observers
base::ObserverList<HistoryBackendObserver>::Unchecked observers_;
+#if !defined(TOOLKIT_QT)
// Used to manage syncing of the typed urls datatype. It will be null before
// HistoryBackend::Init is called. Defined after observers_ because
// it unregisters itself as observer during destruction.
std::unique_ptr<TypedURLSyncBridge> typed_url_sync_bridge_;
+#endif // !defined(TOOLKIT_QT)
DISALLOW_COPY_AND_ASSIGN(HistoryBackend);
};