Index: chrome/browser/resources/md_history/history.js |
diff --git a/chrome/browser/resources/md_history/history.js b/chrome/browser/resources/md_history/history.js |
index 63f28ea5ca28f25b52be5641e62fad042f9c5fcf..24d353c7ee57bd8c9a3705458dd2c01092e1ad54 100644 |
--- a/chrome/browser/resources/md_history/history.js |
+++ b/chrome/browser/resources/md_history/history.js |
@@ -97,6 +97,19 @@ function historyResult(info, results) { |
} |
/** |
+ * Called by the history backend after receiving results and after discovering |
+ * the existence of other forms of browsing history. |
+ * @param {boolean} hasSyncedResults Whether there are synced results. |
+ * @param {boolean} includeOtherFormsOfBrowsingHistory Whether to include |
+ * a sentence about the existence of other forms of browsing history. |
+ */ |
+function showNotification( |
+ hasSyncedResults, includeOtherFormsOfBrowsingHistory) { |
+ // TODO(msramek): Implement the joint notification about web history and other |
+ // forms of browsing history for the MD history page. |
+} |
+ |
+/** |
* Receives the synced history data. An empty list means that either there are |
* no foreign sessions, or tab sync is disabled for this profile. |
* |isTabSyncEnabled| makes it possible to distinguish between the cases. |