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

Side by Side Diff: content/public/browser/presentation_session_message.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 years, 8 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 unified diff | Download patch
OLDNEW
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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory>
10 #include <string> 11 #include <string>
11 #include <vector> 12 #include <vector>
12 13
13 #include "base/memory/scoped_ptr.h"
14 #include "content/common/content_export.h" 14 #include "content/common/content_export.h"
15 15
16 namespace content { 16 namespace content {
17 17
18 enum PresentationMessageType { 18 enum PresentationMessageType {
19 TEXT, 19 TEXT,
20 ARRAY_BUFFER, 20 ARRAY_BUFFER,
21 BLOB, 21 BLOB,
22 }; 22 };
23 23
24 // Represents a presentation session message. 24 // Represents a presentation session message.
25 // If this is a text message, |data| is null; otherwise, |message| is null. 25 // If this is a text message, |data| is null; otherwise, |message| is null.
26 // Empty messages are allowed. 26 // Empty messages are allowed.
27 struct CONTENT_EXPORT PresentationSessionMessage { 27 struct CONTENT_EXPORT PresentationSessionMessage {
28 public: 28 public:
29 explicit PresentationSessionMessage(PresentationMessageType type); 29 explicit PresentationSessionMessage(PresentationMessageType type);
30 ~PresentationSessionMessage(); 30 ~PresentationSessionMessage();
31 31
32 bool is_binary() const; 32 bool is_binary() const;
33 const PresentationMessageType type; 33 const PresentationMessageType type;
34 std::string message; 34 std::string message;
35 scoped_ptr<std::vector<uint8_t>> data; 35 std::unique_ptr<std::vector<uint8_t>> data;
36 }; 36 };
37 37
38 } // namespace content 38 } // namespace content
39 39
40 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_H_ 40 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_H_
OLDNEW
« no previous file with comments | « content/public/browser/presentation_service_delegate.h ('k') | content/public/browser/render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698