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

Side by Side Diff: third_party/WebKit/Source/core/dom/MessagePort.cpp

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: 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) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 20 matching lines...) Expand all
31 #include "bindings/core/v8/ScriptState.h" 31 #include "bindings/core/v8/ScriptState.h"
32 #include "bindings/core/v8/SerializedScriptValue.h" 32 #include "bindings/core/v8/SerializedScriptValue.h"
33 #include "bindings/core/v8/SerializedScriptValueFactory.h" 33 #include "bindings/core/v8/SerializedScriptValueFactory.h"
34 #include "core/dom/ExceptionCode.h" 34 #include "core/dom/ExceptionCode.h"
35 #include "core/dom/ExecutionContext.h" 35 #include "core/dom/ExecutionContext.h"
36 #include "core/dom/ExecutionContextTask.h" 36 #include "core/dom/ExecutionContextTask.h"
37 #include "core/dom/TaskRunnerHelper.h" 37 #include "core/dom/TaskRunnerHelper.h"
38 #include "core/events/MessageEvent.h" 38 #include "core/events/MessageEvent.h"
39 #include "core/frame/LocalDOMWindow.h" 39 #include "core/frame/LocalDOMWindow.h"
40 #include "core/workers/WorkerGlobalScope.h" 40 #include "core/workers/WorkerGlobalScope.h"
41 #include "platform/wtf/Atomics.h"
42 #include "platform/wtf/PtrUtil.h"
43 #include "platform/wtf/text/AtomicString.h"
41 #include "public/platform/WebString.h" 44 #include "public/platform/WebString.h"
42 #include "wtf/Atomics.h"
43 #include "wtf/PtrUtil.h"
44 #include "wtf/text/AtomicString.h"
45 45
46 namespace blink { 46 namespace blink {
47 47
48 MessagePort* MessagePort::Create(ExecutionContext& execution_context) { 48 MessagePort* MessagePort::Create(ExecutionContext& execution_context) {
49 return new MessagePort(execution_context); 49 return new MessagePort(execution_context);
50 } 50 }
51 51
52 MessagePort::MessagePort(ExecutionContext& execution_context) 52 MessagePort::MessagePort(ExecutionContext& execution_context)
53 : ContextLifecycleObserver(&execution_context), 53 : ContextLifecycleObserver(&execution_context),
54 pending_dispatch_task_(0), 54 pending_dispatch_task_(0),
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 } 286 }
287 return port_array; 287 return port_array;
288 } 288 }
289 289
290 DEFINE_TRACE(MessagePort) { 290 DEFINE_TRACE(MessagePort) {
291 ContextLifecycleObserver::Trace(visitor); 291 ContextLifecycleObserver::Trace(visitor);
292 EventTargetWithInlineData::Trace(visitor); 292 EventTargetWithInlineData::Trace(visitor);
293 } 293 }
294 294
295 } // namespace blink 295 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/MessagePort.h ('k') | third_party/WebKit/Source/core/dom/Modulator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698