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

Side by Side Diff: Source/modules/websockets/WorkerThreadableWebSocketChannel.h

Issue 403013002: Rename WebCore to blink in Modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "wtf/RefCounted.h" 42 #include "wtf/RefCounted.h"
43 #include "wtf/Threading.h" 43 #include "wtf/Threading.h"
44 #include "wtf/Vector.h" 44 #include "wtf/Vector.h"
45 #include "wtf/WeakPtr.h" 45 #include "wtf/WeakPtr.h"
46 #include "wtf/text/WTFString.h" 46 #include "wtf/text/WTFString.h"
47 47
48 namespace blink { 48 namespace blink {
49 class WebWaitableEvent; 49 class WebWaitableEvent;
50 } 50 }
51 51
52 namespace WebCore { 52 namespace blink {
53 53
54 class BlobDataHandle; 54 class BlobDataHandle;
55 class KURL; 55 class KURL;
56 class ExecutionContext; 56 class ExecutionContext;
57 class ThreadableWebSocketChannelClientWrapper; 57 class ThreadableWebSocketChannelClientWrapper;
58 class ThreadableWebSocketChannelSyncHelper; 58 class ThreadableWebSocketChannelSyncHelper;
59 class WorkerGlobalScope; 59 class WorkerGlobalScope;
60 class WorkerLoaderProxy; 60 class WorkerLoaderProxy;
61 class WorkerRunLoop; 61 class WorkerRunLoop;
62 62
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 }; 198 };
199 199
200 WorkerThreadableWebSocketChannel(WorkerGlobalScope&, WebSocketChannelClient* , const String& sourceURL, unsigned lineNumber); 200 WorkerThreadableWebSocketChannel(WorkerGlobalScope&, WebSocketChannelClient* , const String& sourceURL, unsigned lineNumber);
201 201
202 const RefPtrWillBeMember<ThreadableWebSocketChannelClientWrapper> m_workerCl ientWrapper; 202 const RefPtrWillBeMember<ThreadableWebSocketChannelClientWrapper> m_workerCl ientWrapper;
203 RefPtrWillBeMember<Bridge> m_bridge; 203 RefPtrWillBeMember<Bridge> m_bridge;
204 String m_sourceURLAtConnection; 204 String m_sourceURLAtConnection;
205 unsigned m_lineNumberAtConnection; 205 unsigned m_lineNumberAtConnection;
206 }; 206 };
207 207
208 } // namespace WebCore 208 } // namespace blink
209 209
210 #endif // WorkerThreadableWebSocketChannel_h 210 #endif // WorkerThreadableWebSocketChannel_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698