| 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_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 Loading... |
| 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_ |
| OLD | NEW |