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

Unified Diff: components/webdata/common/web_data_service_base.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/webdata/common/web_data_service_base.h
diff --git a/components/webdata/common/web_data_service_base.h b/components/webdata/common/web_data_service_base.h
index adad9f1048056918b65a355f2b5338b2e81e71a4..4d38846af18d0dc41e1a6e982197aa6ad5b69553 100644
--- a/components/webdata/common/web_data_service_base.h
+++ b/components/webdata/common/web_data_service_base.h
@@ -11,6 +11,7 @@
#include "base/memory/ref_counted.h"
#include "base/memory/ref_counted_delete_on_message_loop.h"
#include "components/webdata/common/webdata_export.h"
+#include "sql/db_diagnostic_map.h"
#include "sql/init_status.h"
class WebDatabase;
@@ -36,7 +37,9 @@ class WEBDATA_EXPORT WebDataServiceBase
// takes a single parameter, the sql::InitStatus value from trying
// to open the database.
// TODO(joi): Should we combine this with WebDatabaseService::InitCallback?
- typedef base::Callback<void(sql::InitStatus)> ProfileErrorCallback;
+ typedef base::Callback<void(sql::InitStatus,
+ const sql::DatabaseDiagnosticMap&)>
+ ProfileErrorCallback;
typedef base::Closure DBLoadedCallback;

Powered by Google App Engine
This is Rietveld 408576698