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

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

Issue 1118103002: Implements ListenForSessionMessages in PresentationServiceImpl; uses Swap to avoid copying large da… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added unit test Created 5 years, 7 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
(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.size is 0; otherwise, message.size is 0.
whywhat 2015/05/01 15:26:12 Why not one of the message/data is nullptr? Why no
haibinlu 2015/05/01 19:03:20 Done.
18 struct CONTENT_EXPORT PresentationSessionMessage {
19 PresentationSessionMessage(const std::string& presentation_url,
20 const std::string& presentation_id,
21 scoped_ptr<std::string> message,
22 scoped_ptr<std::vector<uint8_t>> data);
23 ~PresentationSessionMessage();
24
25 const std::string presentation_url;
26 const std::string presentation_id;
27 scoped_ptr<std::string> message;
28 scoped_ptr<std::vector<uint8_t>> data;
29 };
30
31 } // namespace content
32
33 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698