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

Unified Diff: chrome/browser/browsing_data/browsing_data_remover_unittest.cc

Issue 1749603002: Store URLs in WebappDataStorage, and purge them when history is cleared. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing reviewer comments. Add dependency patchset for unit test hanging Created 4 years, 9 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: chrome/browser/browsing_data/browsing_data_remover_unittest.cc
diff --git a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
index 2b44b9d664d4466b64688cfe5893fa96c3feb7bd..f76f2bce31768d03bd0bb943ab007360acfb9d27 100644
--- a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
+++ b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
@@ -273,6 +273,11 @@ class TestWebappRegistry : public WebappRegistry {
// Mocks out a JNI call and runs the callback.
callback.Run();
}
+
+ void ClearWebappHistory(const base::Closure& callback) override {
+ // Mocks out a JNI call and calls the callback.
+ callback.Run();
+ }
};
#endif

Powered by Google App Engine
This is Rietveld 408576698