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

Unified Diff: remoting/protocol/authenticator.cc

Issue 8774031: Multi-step authentication support in JingleSession. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years 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
« no previous file with comments | « remoting/protocol/authenticator.h ('k') | remoting/protocol/content_description.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/authenticator.cc
diff --git a/remoting/protocol/authenticator.cc b/remoting/protocol/authenticator.cc
new file mode 100644
index 0000000000000000000000000000000000000000..23f77e1adf49f3cddd326f041e7b9617ecbee575
--- /dev/null
+++ b/remoting/protocol/authenticator.cc
@@ -0,0 +1,35 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "remoting/protocol/authenticator.h"
+
+#include "remoting/base/constants.h"
+#include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
+
+namespace remoting {
+namespace protocol {
+
+namespace {
+const buzz::StaticQName kAuthenticationQName = { kChromotingXmlNamespace,
+ "authentication" };
+} // namespace
+
+// static
+bool Authenticator::IsAuthenticatorMessage(const buzz::XmlElement* message) {
+ return message->Name() == kAuthenticationQName;
+}
+
+// static
+buzz::XmlElement* Authenticator::CreateEmptyAuthenticatorMessage() {
+ return new buzz::XmlElement(kAuthenticationQName);
+}
+
+// static
+const buzz::XmlElement* Authenticator::FindAuthenticatorMessage(
+ const buzz::XmlElement* message) {
+ return message->FirstNamed(kAuthenticationQName);
+}
+
+} // namespace protocol
+} // namespace remoting
« no previous file with comments | « remoting/protocol/authenticator.h ('k') | remoting/protocol/content_description.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698