Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: components/history/core/browser/history_client.h

Issue 2107493002: Offer user to send feedback from profile error dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Yet more compile errors Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/history/core/browser/history_client.h
diff --git a/components/history/core/browser/history_client.h b/components/history/core/browser/history_client.h
index d4dc3cf5903190127608df55e7a9981ddaa86773..97931947a575bacacf41c01a1ae9fb5db224f165 100644
--- a/components/history/core/browser/history_client.h
+++ b/components/history/core/browser/history_client.h
@@ -8,6 +8,7 @@
#include <memory>
#include "base/macros.h"
+#include "sql/db_diagnostic_map.h"
#include "sql/init_status.h"
class GURL;
@@ -42,7 +43,9 @@ class HistoryClient {
virtual bool CanAddURL(const GURL& url) = 0;
// Notifies the embedder that there was a problem reading the database.
- virtual void NotifyProfileError(sql::InitStatus init_status) = 0;
+ virtual void NotifyProfileError(
+ sql::InitStatus init_status,
+ const sql::DatabaseDiagnosticMap& diagnostics) = 0;
// Returns a new HistoryBackendClient instance.
virtual std::unique_ptr<HistoryBackendClient> CreateBackendClient() = 0;

Powered by Google App Engine
This is Rietveld 408576698