OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_MESSAGE_H_ | |
6 #define CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_MESSAGE_H_ | |
7 | |
8 #include <string> | |
9 #include <vector> | |
10 | |
11 #include "base/memory/scoped_ptr.h" | |
12 #include "content/common/content_export.h" | |
13 | |
14 namespace content { | |
15 | |
16 // Represents a presentation session message. | |
17 // If this is a text message, |data| is null; otherwise, |message| is null. | |
18 // Empty messages are allowed. | |
19 struct CONTENT_EXPORT PresentationSessionMessage { | |
20 public: | |
21 ~PresentationSessionMessage(); | |
22 | |
23 // Creates string message, which takes the ownership of |message|. | |
24 static scoped_ptr<PresentationSessionMessage> CreateStringMessage( | |
imcheng (use chromium acct)
2015/05/04 19:53:55
I think you also need to add CONTENT_EXPORT to sta
haibinlu
2015/05/04 21:33:50
Done.
| |
25 const std::string& presentation_url, | |
26 const std::string& presentation_id, | |
27 scoped_ptr<std::string> message); | |
28 | |
29 // Creates binary message, which takes the ownership of |data|. | |
30 static scoped_ptr<PresentationSessionMessage> CreateBinaryMessage( | |
31 const std::string& presentation_url, | |
32 const std::string& presentation_id, | |
33 scoped_ptr<std::vector<uint8_t>> data); | |
34 | |
35 bool is_binary() const; | |
36 const std::string presentation_url; | |
37 const std::string presentation_id; | |
38 scoped_ptr<std::string> message; | |
39 scoped_ptr<std::vector<uint8_t>> data; | |
40 | |
41 private: | |
42 PresentationSessionMessage(const std::string& presentation_url, | |
43 const std::string& presentation_id, | |
44 scoped_ptr<std::string> message); | |
45 PresentationSessionMessage(const std::string& presentation_url, | |
46 const std::string& presentation_id, | |
47 scoped_ptr<std::vector<uint8_t>> data); | |
48 }; | |
49 | |
50 } // namespace content | |
51 | |
52 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_H_ | |
OLD | NEW |