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

Side by Side Diff: third_party/WebKit/Source/modules/presentation/PresentationConnection.h

Issue 2815793002: [SharedArrayBuffer] Add "AllowShared" extended attribute, used for WebGL (Closed)
Patch Set: merge HEAD Created 3 years, 8 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 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/ArrayBufferViewHelpers.h"
9 #include "core/dom/ContextLifecycleObserver.h" 10 #include "core/dom/ContextLifecycleObserver.h"
10 #include "core/dom/NotShared.h"
11 #include "core/events/EventTarget.h" 11 #include "core/events/EventTarget.h"
12 #include "core/fileapi/Blob.h" 12 #include "core/fileapi/Blob.h"
13 #include "core/fileapi/FileError.h" 13 #include "core/fileapi/FileError.h"
14 #include "platform/heap/Handle.h" 14 #include "platform/heap/Handle.h"
15 #include "platform/weborigin/KURL.h" 15 #include "platform/weborigin/KURL.h"
16 #include "platform/wtf/text/WTFString.h" 16 #include "platform/wtf/text/WTFString.h"
17 #include "public/platform/modules/presentation/WebPresentationConnection.h" 17 #include "public/platform/modules/presentation/WebPresentationConnection.h"
18 #include "public/platform/modules/presentation/WebPresentationConnectionProxy.h" 18 #include "public/platform/modules/presentation/WebPresentationConnectionProxy.h"
19 #include "public/platform/modules/presentation/WebPresentationController.h" 19 #include "public/platform/modules/presentation/WebPresentationController.h"
20 #include "public/platform/modules/presentation/WebPresentationInfo.h" 20 #include "public/platform/modules/presentation/WebPresentationInfo.h"
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 HeapDeque<Member<Message>> messages_; 139 HeapDeque<Member<Message>> messages_;
140 140
141 BinaryType binary_type_; 141 BinaryType binary_type_;
142 142
143 std::unique_ptr<WebPresentationConnectionProxy> proxy_; 143 std::unique_ptr<WebPresentationConnectionProxy> proxy_;
144 }; 144 };
145 145
146 } // namespace blink 146 } // namespace blink
147 147
148 #endif // PresentationConnection_h 148 #endif // PresentationConnection_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698