Index: chrome/browser/history/chrome_history_client.cc |
diff --git a/chrome/browser/history/chrome_history_client.cc b/chrome/browser/history/chrome_history_client.cc |
index 0b482f208e878f64fb473dc30b953f8ce89b068b..eb112ddbc347b0d768a7b7e49af0eb496951d33e 100644 |
--- a/chrome/browser/history/chrome_history_client.cc |
+++ b/chrome/browser/history/chrome_history_client.cc |
@@ -5,6 +5,7 @@ |
#include "chrome/browser/history/chrome_history_client.h" |
#include "base/logging.h" |
+#include "chrome/browser/history/history_utils.h" |
#include "chrome/browser/ui/profile_error_dialog.h" |
#include "chrome/common/chrome_version_info.h" |
#include "chrome/grit/chromium_strings.h" |
@@ -62,6 +63,10 @@ void ChromeHistoryClient::GetBookmarks( |
} |
} |
+bool ChromeHistoryClient::CanAddURL(const GURL& url) { |
+ return CanAddURLToHistory(url); |
+} |
+ |
void ChromeHistoryClient::NotifyProfileError(sql::InitStatus init_status) { |
ShowProfileErrorDialog( |
PROFILE_ERROR_HISTORY, |