| 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 <memory> |
| 9 #include "core/dom/ContextLifecycleObserver.h" | 9 #include "core/dom/ContextLifecycleObserver.h" |
| 10 #include "core/events/EventTarget.h" | 10 #include "core/events/EventTarget.h" |
| 11 #include "core/fileapi/Blob.h" | 11 #include "core/fileapi/Blob.h" |
| 12 #include "core/fileapi/FileError.h" | 12 #include "core/fileapi/FileError.h" |
| 13 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
| 14 #include "platform/weborigin/KURL.h" | 14 #include "platform/weborigin/KURL.h" |
| 15 #include "platform/wtf/text/WTFString.h" |
| 15 #include "public/platform/modules/presentation/WebPresentationConnection.h" | 16 #include "public/platform/modules/presentation/WebPresentationConnection.h" |
| 16 #include "public/platform/modules/presentation/WebPresentationConnectionProxy.h" | 17 #include "public/platform/modules/presentation/WebPresentationConnectionProxy.h" |
| 17 #include "public/platform/modules/presentation/WebPresentationController.h" | 18 #include "public/platform/modules/presentation/WebPresentationController.h" |
| 18 #include "public/platform/modules/presentation/WebPresentationInfo.h" | 19 #include "public/platform/modules/presentation/WebPresentationInfo.h" |
| 19 #include "wtf/text/WTFString.h" | |
| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 HeapDeque<Member<Message>> messages_; | 138 HeapDeque<Member<Message>> messages_; |
| 139 | 139 |
| 140 BinaryType binary_type_; | 140 BinaryType binary_type_; |
| 141 | 141 |
| 142 std::unique_ptr<WebPresentationConnectionProxy> proxy_; | 142 std::unique_ptr<WebPresentationConnectionProxy> proxy_; |
| 143 }; | 143 }; |
| 144 | 144 |
| 145 } // namespace blink | 145 } // namespace blink |
| 146 | 146 |
| 147 #endif // PresentationConnection_h | 147 #endif // PresentationConnection_h |
| OLD | NEW |