| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 PresentationConnection_h | 5 #ifndef PresentationConnection_h |
| 6 #define PresentationConnection_h | 6 #define PresentationConnection_h |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include "core/dom/ContextLifecycleObserver.h" | 9 #include "core/dom/ContextLifecycleObserver.h" |
| 9 #include "core/events/EventTarget.h" | 10 #include "core/events/EventTarget.h" |
| 10 #include "core/fileapi/Blob.h" | 11 #include "core/fileapi/Blob.h" |
| 11 #include "core/fileapi/FileError.h" | 12 #include "core/fileapi/FileError.h" |
| 12 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
| 13 #include "platform/weborigin/KURL.h" | 14 #include "platform/weborigin/KURL.h" |
| 14 #include "public/platform/modules/presentation/WebPresentationConnection.h" | 15 #include "public/platform/modules/presentation/WebPresentationConnection.h" |
| 15 #include "public/platform/modules/presentation/WebPresentationConnectionProxy.h" | 16 #include "public/platform/modules/presentation/WebPresentationConnectionProxy.h" |
| 16 #include "public/platform/modules/presentation/WebPresentationController.h" | 17 #include "public/platform/modules/presentation/WebPresentationController.h" |
| 17 #include "public/platform/modules/presentation/WebPresentationSessionInfo.h" | 18 #include "public/platform/modules/presentation/WebPresentationSessionInfo.h" |
| 18 #include "wtf/text/WTFString.h" | 19 #include "wtf/text/WTFString.h" |
| 19 #include <memory> | |
| 20 | 20 |
| 21 namespace WTF { | 21 namespace WTF { |
| 22 class AtomicString; | 22 class AtomicString; |
| 23 } // namespace WTF | 23 } // namespace WTF |
| 24 | 24 |
| 25 namespace blink { | 25 namespace blink { |
| 26 | 26 |
| 27 class DOMArrayBuffer; | 27 class DOMArrayBuffer; |
| 28 class DOMArrayBufferView; | 28 class DOMArrayBufferView; |
| 29 class PresentationController; | 29 class PresentationController; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 HeapDeque<Member<Message>> m_messages; | 135 HeapDeque<Member<Message>> m_messages; |
| 136 | 136 |
| 137 BinaryType m_binaryType; | 137 BinaryType m_binaryType; |
| 138 | 138 |
| 139 std::unique_ptr<WebPresentationConnectionProxy> m_proxy; | 139 std::unique_ptr<WebPresentationConnectionProxy> m_proxy; |
| 140 }; | 140 }; |
| 141 | 141 |
| 142 } // namespace blink | 142 } // namespace blink |
| 143 | 143 |
| 144 #endif // PresentationConnection_h | 144 #endif // PresentationConnection_h |
| OLD | NEW |