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

Side by Side Diff: content/public/common/presentation_session.h

Issue 2617143006: [Presentation API] Move Presentation API structs to public/common (Closed)
Patch Set: Rebase Created 3 years, 11 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_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_PRESENTATION_SESSION_H_
6 #define CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_H_ 6 #define CONTENT_PUBLIC_COMMON_PRESENTATION_SESSION_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "url/gurl.h" 11 #include "url/gurl.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 enum PresentationConnectionState { 15 enum PresentationConnectionState {
16 PRESENTATION_CONNECTION_STATE_CONNECTING, 16 PRESENTATION_CONNECTION_STATE_CONNECTING,
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 PresentationError(PresentationErrorType error_type, 52 PresentationError(PresentationErrorType error_type,
53 const std::string& message); 53 const std::string& message);
54 ~PresentationError(); 54 ~PresentationError();
55 55
56 const PresentationErrorType error_type; 56 const PresentationErrorType error_type;
57 const std::string message; 57 const std::string message;
58 }; 58 };
59 59
60 } // namespace content 60 } // namespace content
61 61
62 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SESSION_H_ 62 #endif // CONTENT_PUBLIC_COMMON_PRESENTATION_SESSION_H_
OLDNEW
« no previous file with comments | « content/public/common/presentation_connection_message.cc ('k') | content/public/common/presentation_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698