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

Side by Side Diff: third_party/WebKit/Source/modules/websockets/DOMWebSocket.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 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #ifndef DOMWebSocket_h 31 #ifndef DOMWebSocket_h
32 #define DOMWebSocket_h 32 #define DOMWebSocket_h
33 33
34 #include <stddef.h> 34 #include <stddef.h>
35 #include <stdint.h> 35 #include <stdint.h>
36 #include <memory> 36 #include <memory>
37 #include "bindings/core/v8/ActiveScriptWrappable.h" 37 #include "bindings/core/v8/ActiveScriptWrappable.h"
38 #include "bindings/core/v8/ScriptWrappable.h" 38 #include "bindings/core/v8/ScriptWrappable.h"
39 #include "core/dom/NotShared.h" 39 #include "core/dom/ArrayBufferViewHelpers.h"
40 #include "core/dom/SuspendableObject.h" 40 #include "core/dom/SuspendableObject.h"
41 #include "core/events/EventListener.h" 41 #include "core/events/EventListener.h"
42 #include "core/events/EventTarget.h" 42 #include "core/events/EventTarget.h"
43 #include "modules/EventTargetModules.h" 43 #include "modules/EventTargetModules.h"
44 #include "modules/ModulesExport.h" 44 #include "modules/ModulesExport.h"
45 #include "modules/websockets/WebSocketChannel.h" 45 #include "modules/websockets/WebSocketChannel.h"
46 #include "modules/websockets/WebSocketChannelClient.h" 46 #include "modules/websockets/WebSocketChannelClient.h"
47 #include "platform/Timer.h" 47 #include "platform/Timer.h"
48 #include "platform/heap/Handle.h" 48 #include "platform/heap/Handle.h"
49 #include "platform/weborigin/KURL.h" 49 #include "platform/weborigin/KURL.h"
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 String subprotocol_; 253 String subprotocol_;
254 String extensions_; 254 String extensions_;
255 255
256 Member<EventQueue> event_queue_; 256 Member<EventQueue> event_queue_;
257 TaskRunnerTimer<DOMWebSocket> buffered_amount_consume_timer_; 257 TaskRunnerTimer<DOMWebSocket> buffered_amount_consume_timer_;
258 }; 258 };
259 259
260 } // namespace blink 260 } // namespace blink
261 261
262 #endif // DOMWebSocket_h 262 #endif // DOMWebSocket_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698