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

Unified Diff: remoting/signaling/jid_util.h

Issue 1123153002: Added class to subscribe to GCD notifications over XMPP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@host-xmpp-connect2a
Patch Set: revised unit test Created 5 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: remoting/signaling/jid_util.h
diff --git a/remoting/signaling/jid_util.h b/remoting/signaling/jid_util.h
index e7bd7bcac1162c9f7b0e80f7cd00ec7dd6b4cb3e..f3ee06b91937a995ad8fbfde98eeec223575617b 100644
--- a/remoting/signaling/jid_util.h
+++ b/remoting/signaling/jid_util.h
@@ -13,6 +13,17 @@ namespace remoting {
// to lower-case.
std::string NormalizeJid(const std::string& jid);
+// Splits a JID into a bare JID and a resource suffix. Either or both
+// of |full_jid| and |resource_suffix| may be null. If |full_jid| is
+// already a bare JID, |resource_suffix| is set to the empty string.
+// Returns true of |full_jid| has a resource, false if not.
+//
+// e.g. "user@domain/resource" -> "user@domain", "/resource", true
Sergey Ulanov 2015/05/15 18:22:37 I think it's better to remove / from the returned
John Williams 2015/05/15 21:59:43 Done.
+// "user@domain" -> "user@domain", "", false
+bool SplitJidResource(const std::string& full_jid,
+ std::string* bare_jid,
+ std::string* resource_suffix);
+
} // namespace remoting
#endif // REMOTING_SIGNALING_JID_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698