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

Unified Diff: webrtc/libjingle/xmpp/mucroomuniquehangoutidtask.cc

Issue 2617443003: Remove webrtc/libjingle/{xmllite,xmpp} (Closed)
Patch Set: 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: webrtc/libjingle/xmpp/mucroomuniquehangoutidtask.cc
diff --git a/webrtc/libjingle/xmpp/mucroomuniquehangoutidtask.cc b/webrtc/libjingle/xmpp/mucroomuniquehangoutidtask.cc
deleted file mode 100644
index 79ccc29f557fba3bfe6cb3154db3a5fe0791a435..0000000000000000000000000000000000000000
--- a/webrtc/libjingle/xmpp/mucroomuniquehangoutidtask.cc
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright 2012 The WebRTC Project Authors. All rights reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#include "webrtc/libjingle/xmpp/mucroomuniquehangoutidtask.h"
-
-#include "webrtc/libjingle/xmpp/constants.h"
-
-namespace buzz {
-
-MucRoomUniqueHangoutIdTask::MucRoomUniqueHangoutIdTask(XmppTaskParentInterface* parent,
- const Jid& lookup_server_jid)
- : IqTask(parent, STR_GET, lookup_server_jid, MakeUniqueRequestXml()) {
-}
-
-// Construct a stanza to request a unique room id. eg:
-//
-// <unique hangout-id="true" xmlns="http://jabber.org/protocol/muc#unique"/>
-XmlElement* MucRoomUniqueHangoutIdTask::MakeUniqueRequestXml() {
- XmlElement* xml = new XmlElement(QN_MUC_UNIQUE_QUERY, false);
- xml->SetAttr(QN_HANGOUT_ID, STR_TRUE);
- return xml;
-}
-
-// Handle a response like the following:
-//
-// <unique hangout-id="hangout_id"
-// xmlns="http://jabber.org/protocol/muc#unique"/>
-// muvc-private-chat-guid@groupchat.google.com
-// </unique>
-void MucRoomUniqueHangoutIdTask::HandleResult(const XmlElement* stanza) {
-
- const XmlElement* unique_elem = stanza->FirstNamed(QN_MUC_UNIQUE_QUERY);
- if (unique_elem == NULL ||
- !unique_elem->HasAttr(QN_HANGOUT_ID)) {
- SignalError(this, stanza);
- return;
- }
-
- std::string hangout_id = unique_elem->Attr(QN_HANGOUT_ID);
-
- SignalResult(this, hangout_id);
-}
-
-} // namespace buzz
« no previous file with comments | « webrtc/libjingle/xmpp/mucroomuniquehangoutidtask.h ('k') | webrtc/libjingle/xmpp/mucroomuniquehangoutidtask_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698