Chromium Code Reviews| Index: components/history/core/browser/history_backend.h |
| diff --git a/components/history/core/browser/history_backend.h b/components/history/core/browser/history_backend.h |
| index 0b952b4b4b8ac365694ec5fb0558123917c14526..13ff6f088c2eac986c92d2e4cc024aca1ce3d3c2 100644 |
| --- a/components/history/core/browser/history_backend.h |
| +++ b/components/history/core/browser/history_backend.h |
| @@ -113,7 +113,8 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>, |
| virtual ~Delegate() {} |
| // Called when the database cannot be read correctly for some reason. |
| - virtual void NotifyProfileError(sql::InitStatus init_status) = 0; |
| + virtual void NotifyProfileError(sql::InitStatus init_status, |
| + const std::string& diagnostics) = 0; |
|
sky
2016/07/18 21:06:01
Document what |description| is.
afakhry
2016/07/26 23:33:47
You mean |diagnostics|. Done!
|
| // Sets the in-memory history backend. The in-memory backend is created by |
| // the main backend. For non-unit tests, this happens on the background |
| @@ -879,6 +880,10 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>, |
| // Listens for the system being under memory pressure. |
| std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| + // Contains diagnostic information about the sql database that will be filled |
| + // when a catastrophic error occurs. |
| + std::string db_diagnostics_; |
| + |
| // Map from host to index in the TopHosts list. It is updated only by |
| // TopHosts(), so it's usually stale. |
| mutable base::hash_map<std::string, int> host_ranks_; |