| 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 CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_CONNECTION_REQUEST_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_CONNECTION_REQUEST_H_ |
| 6 #define CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_CONNECTION_REQUEST_H_ | 6 #define CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_CONNECTION_REQUEST_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 | 10 |
| 10 #include "base/macros.h" | 11 #include "base/macros.h" |
| 11 #include "chrome/browser/media/router/media_route.h" | 12 #include "chrome/browser/media/router/media_route.h" |
| 12 #include "chrome/browser/media/router/media_source.h" | 13 #include "chrome/browser/media/router/media_source.h" |
| 13 #include "chrome/browser/media/router/presentation_request.h" | 14 #include "chrome/browser/media/router/presentation_request.h" |
| 14 #include "chrome/browser/media/router/render_frame_host_id.h" | 15 #include "chrome/browser/media/router/render_frame_host_id.h" |
| 15 #include "content/public/browser/presentation_service_delegate.h" | 16 #include "content/public/browser/presentation_service_delegate.h" |
| 16 #include "url/gurl.h" | 17 #include "url/gurl.h" |
| 17 | 18 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 PresentationSessionSuccessCallback success_cb_; | 72 PresentationSessionSuccessCallback success_cb_; |
| 72 PresentationSessionErrorCallback error_cb_; | 73 PresentationSessionErrorCallback error_cb_; |
| 73 bool cb_invoked_; | 74 bool cb_invoked_; |
| 74 | 75 |
| 75 DISALLOW_COPY_AND_ASSIGN(CreatePresentationConnectionRequest); | 76 DISALLOW_COPY_AND_ASSIGN(CreatePresentationConnectionRequest); |
| 76 }; | 77 }; |
| 77 | 78 |
| 78 } // namespace media_router | 79 } // namespace media_router |
| 79 | 80 |
| 80 #endif // CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_CONNECTION_REQUEST_H_ | 81 #endif // CHROME_BROWSER_MEDIA_ROUTER_CREATE_PRESENTATION_CONNECTION_REQUEST_H_ |
| OLD | NEW |