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

Unified Diff: components/physical_web/data_source/physical_web_data_source_impl_unittest.cc

Issue 2648973004: Remove GetMetadata from PhysicalWebDataSource and PhysicalWebScanner (Closed)
Patch Set: nil -> null Created 3 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/physical_web/data_source/physical_web_data_source_impl_unittest.cc
diff --git a/components/physical_web/data_source/physical_web_data_source_impl_unittest.cc b/components/physical_web/data_source/physical_web_data_source_impl_unittest.cc
index ddf30bc4542c00d20aaca6c8343bbfd8cbb4378e..49ebcccd98e72f939e7018f4000af7f09a259b0c 100644
--- a/components/physical_web/data_source/physical_web_data_source_impl_unittest.cc
+++ b/components/physical_web/data_source/physical_web_data_source_impl_unittest.cc
@@ -22,7 +22,6 @@ class TestPhysicalWebDataSource : public PhysicalWebDataSourceImpl {
void StartDiscovery(bool network_request_enabled) override;
void StopDiscovery() override;
- std::unique_ptr<base::ListValue> GetMetadata() override;
std::unique_ptr<MetadataList> GetMetadataList() override;
bool HasUnresolvedDiscoveries() override;
};
@@ -30,10 +29,6 @@ void TestPhysicalWebDataSource::StartDiscovery(bool network_request_enabled) {}
void TestPhysicalWebDataSource::StopDiscovery() {}
-std::unique_ptr<base::ListValue> TestPhysicalWebDataSource::GetMetadata() {
- return NULL;
-}
-
std::unique_ptr<MetadataList> TestPhysicalWebDataSource::GetMetadataList() {
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698