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

Unified Diff: remoting/protocol/pairing_registry.cc

Issue 15709005: Linux pairing registry delegate implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reviewer feedback. Created 7 years, 6 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: remoting/protocol/pairing_registry.cc
diff --git a/remoting/protocol/pairing_registry.cc b/remoting/protocol/pairing_registry.cc
index 6c9cc66ac3504c9ce18ac5acb0407b07ea9cf136..94f6ba5a7060d0e063c4fae4ba9b19b61aba4ce6 100644
--- a/remoting/protocol/pairing_registry.cc
+++ b/remoting/protocol/pairing_registry.cc
@@ -78,21 +78,5 @@ void PairingRegistry::GetPairing(const std::string& client_id,
delegate_->GetPairing(client_id, callback);
}
-void NotImplementedPairingRegistryDelegate::AddPairing(
- const PairingRegistry::Pairing& new_paired_client,
- const PairingRegistry::AddPairingCallback& callback) {
- NOTIMPLEMENTED();
- if (!callback.is_null()) {
- callback.Run(false);
- }
-}
-
-void NotImplementedPairingRegistryDelegate::GetPairing(
- const std::string& client_id,
- const PairingRegistry::GetPairingCallback& callback) {
- NOTIMPLEMENTED();
- callback.Run(PairingRegistry::Pairing());
-}
-
} // namespace protocol
} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698