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

Unified Diff: components/history/core/browser/web_history_service_unittest.cc

Issue 1983073002: Query the existence other forms of browsing history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments, re-added protobuf Created 4 years, 7 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/web_history_service_unittest.cc
diff --git a/components/history/core/browser/web_history_service_unittest.cc b/components/history/core/browser/web_history_service_unittest.cc
index f5e789b28295ce8a097b8a874b48a0fc150a69d1..e64d81f30de6118becfb26436cd29aee93c8f27e 100644
--- a/components/history/core/browser/web_history_service_unittest.cc
+++ b/components/history/core/browser/web_history_service_unittest.cc
@@ -122,6 +122,11 @@ class TestRequest : public WebHistoryService::Request {
void SetPostData(const std::string& post_data) override {
post_data_ = post_data;
}
+ void SetPostData(const std::string& post_data,
+ const std::string& mime_type) override {
+ SetPostData(post_data);
+ }
+ void SetUserAgent(const std::string& post_data) override {}
void Start() override {
is_pending_ = true;

Powered by Google App Engine
This is Rietveld 408576698