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

Unified Diff: remoting/protocol/session_plugin.h

Issue 2586403003: [Chromoting] Add SessionPlugin in JingleSession (Closed)
Patch Set: Created 4 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/session.h ('k') | remoting/protocol/session_plugin.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/session_plugin.h
diff --git a/remoting/protocol/session_plugin.h b/remoting/protocol/session_plugin.h
new file mode 100644
index 0000000000000000000000000000000000000000..00797139a6527a068fab8291f344e76093142d95
--- /dev/null
+++ b/remoting/protocol/session_plugin.h
@@ -0,0 +1,52 @@
+// Copyright 2016 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.
+
+#ifndef REMOTING_PROTOCOL_SESSION_PLUGIN_H_
+#define REMOTING_PROTOCOL_SESSION_PLUGIN_H_
+
+#include <memory>
+
+#include "base/callback.h"
+#include "remoting/protocol/jingle_messages.h"
+#include "remoting/protocol/session.h"
+#include "third_party/webrtc/libjingle/xmllite/xmlelement.h"
+
+namespace remoting {
+namespace protocol {
+
+// An interface to attach data on an outgoing message or handle an incoming of
+// message. The plugin data are designed to be optional, so this class won't
+// impact a session generation.
+class SessionPlugin {
+ public:
+ SessionPlugin();
+ virtual ~SessionPlugin();
+
+ // Attachs messages in |attachments|. This function will be called after other
Jamie 2016/12/20 23:29:21 s/Attachs/Attaches/
Hzj_jie 2016/12/21 01:54:44 Done.
+ // components have finished generating messages, and set the state and action.
Jamie 2016/12/20 23:29:21 s/and set/and have set/
Hzj_jie 2016/12/21 01:54:44 Done.
+ // So |state| is the current session state, |action| is the current ActionType
+ // in message.
+ virtual void OnSending(Session::State state,
Jamie 2016/12/20 23:29:21 I think On[Incoming|Outgoing]Message would be bett
Hzj_jie 2016/12/21 01:54:44 Done.
+ JingleMessage::ActionType action,
+ std::unique_ptr<buzz::XmlElement>* attachments) = 0;
Jamie 2016/12/20 23:29:21 Passing a pointer to a unique_ptr is a bit strange
Hzj_jie 2016/12/21 01:54:44 This function is a little bit different than Execu
+
+ // Handles messages in |attachments|. This function will be called before
+ // other components have handled the incoming message. So |state| is the last
+ // session state, |action| is the current ActionType in message.
+ virtual void OnReceiving(
+ Session::State state,
+ JingleMessage::ActionType action,
+ const std::unique_ptr<buzz::XmlElement>& attachments) = 0;
+
+ // Finds "attachments" tag from |tag|, returns null if the tag is not found.
+ static const buzz::XmlElement* FindAttachments(const buzz::XmlElement& tag);
+
+ // Creates a new "attachments" tag.
+ static std::unique_ptr<buzz::XmlElement> NewAttachments();
+};
+
+} // namespace protocol
+} // namespace remoting
+
+#endif // REMOTING_PROTOCOL_SESSION_PLUGIN_H_
« no previous file with comments | « remoting/protocol/session.h ('k') | remoting/protocol/session_plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698