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

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

Issue 849323002: Componentize HistoryDatabase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android compilation Created 5 years, 11 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/download_database.h
diff --git a/components/history/core/browser/download_database.h b/components/history/core/browser/download_database.h
index 90d0b3667dd8821c99534ee1f7fc7cc74ff1947c..b0b381c1d8e7cc84fd78e562a77f4898f5d24065 100644
--- a/components/history/core/browser/download_database.h
+++ b/components/history/core/browser/download_database.h
@@ -25,8 +25,8 @@ struct DownloadRow;
class DownloadDatabase {
public:
// Must call InitDownloadTable before using any other functions.
- DownloadDatabase(DownloadInterruptReason download_interrupt_no_reason,
- DownloadInterruptReason download_interrupt_crash);
+ DownloadDatabase(DownloadInterruptReason download_interrupt_reason_none,
+ DownloadInterruptReason download_interrupt_reason_crash);
virtual ~DownloadDatabase();
uint32 GetNextDownloadId();
@@ -111,8 +111,8 @@ class DownloadDatabase {
// Those constants are defined in the embedder and injected into the
// database in the constructor. They represent the interrupt reason
// to use for respectively an undefined value and in case of a crash.
- DownloadInterruptReason download_interrupt_no_reason_;
- DownloadInterruptReason download_interrupt_crash_;
+ DownloadInterruptReason download_interrupt_reason_none_;
+ DownloadInterruptReason download_interrupt_reason_crash_;
DISALLOW_COPY_AND_ASSIGN(DownloadDatabase);
};
« no previous file with comments | « components/history/core/browser/android/visit_sql_handler.cc ('k') | components/history/core/browser/download_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698