| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_MESSAGE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_MESSAGE_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_MESSAGE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_MESSAGE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 | 15 |
| 16 enum PresentationMessageType { | 16 enum PresentationMessageType { |
| 17 TEXT, | 17 TEXT, |
| 18 ARRAY_BUFFER, | 18 ARRAY_BUFFER, |
| 19 BLOB, | 19 BLOB, |
| 20 }; | 20 }; |
| 21 | 21 |
| 22 // Represents a presentation session message. | 22 // Represents a presentation session message. |
| 23 // If this is a text message, |data| is null; otherwise, |message| is null. | 23 // If this is a text message, |data| is null; otherwise, |message| is null. |
| 24 // Empty messages are allowed. | 24 // Empty messages are allowed. |
| 25 struct CONTENT_EXPORT PresentationSessionMessage { | 25 struct CONTENT_EXPORT PresentationSessionMessage { |
| 26 public: | 26 public: |
| 27 explicit PresentationSessionMessage(PresentationMessageType type); |
| 27 ~PresentationSessionMessage(); | 28 ~PresentationSessionMessage(); |
| 28 | 29 |
| 29 // Creates string message, which takes the ownership of |message|. | |
| 30 static scoped_ptr<PresentationSessionMessage> CreateStringMessage( | |
| 31 const std::string& presentation_url, | |
| 32 const std::string& presentation_id, | |
| 33 scoped_ptr<std::string> message); | |
| 34 | |
| 35 // Creates array buffer message, which takes the ownership of |data|. | |
| 36 static scoped_ptr<PresentationSessionMessage> CreateArrayBufferMessage( | |
| 37 const std::string& presentation_url, | |
| 38 const std::string& presentation_id, | |
| 39 scoped_ptr<std::vector<uint8_t>> data); | |
| 40 | |
| 41 // Creates blob message, which takes the ownership of |data|. | |
| 42 static scoped_ptr<PresentationSessionMessage> CreateBlobMessage( | |
| 43 const std::string& presentation_url, | |
| 44 const std::string& presentation_id, | |
| 45 scoped_ptr<std::vector<uint8_t>> data); | |
| 46 | |
| 47 bool is_binary() const; | 30 bool is_binary() const; |
| 48 std::string presentation_url; | 31 const PresentationMessageType type; |
| 49 std::string presentation_id; | 32 std::string message; |
| 50 PresentationMessageType type; | 33 std::vector<uint8_t> data; |
| 51 scoped_ptr<std::string> message; | |
| 52 scoped_ptr<std::vector<uint8_t>> data; | |
| 53 | |
| 54 private: | |
| 55 PresentationSessionMessage(const std::string& presentation_url, | |
| 56 const std::string& presentation_id, | |
| 57 scoped_ptr<std::string> message); | |
| 58 PresentationSessionMessage(const std::string& presentation_url, | |
| 59 const std::string& presentation_id, | |
| 60 PresentationMessageType type, | |
| 61 scoped_ptr<std::vector<uint8_t>> data); | |
| 62 }; | 34 }; |
| 63 | 35 |
| 64 } // namespace content | 36 } // namespace content |
| 65 | 37 |
| 66 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_H_ | 38 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_H_ |
| OLD | NEW |