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

Side by Side Diff: Source/core/workers/SharedWorker.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/tests/LayoutUnit.cpp ('k') | Source/core/workers/SharedWorkerContext.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 18 matching lines...) Expand all
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 #include "config.h" 32 #include "config.h"
33 33
34 #if ENABLE(SHARED_WORKERS) 34 #if ENABLE(SHARED_WORKERS)
35 35
36 #include "SharedWorker.h" 36 #include "SharedWorker.h"
37 37
38 #include "ExceptionCode.h" 38 #include "ExceptionCode.h"
39 #include "UseCounter.h"
40 #include "InspectorInstrumentation.h" 39 #include "InspectorInstrumentation.h"
41 #include "KURL.h"
42 #include "MessageChannel.h" 40 #include "MessageChannel.h"
43 #include "MessagePort.h" 41 #include "MessagePort.h"
44 #include "ScriptExecutionContext.h" 42 #include "ScriptExecutionContext.h"
45 #include "SecurityOrigin.h" 43 #include "SecurityOrigin.h"
46 #include "SharedWorkerRepository.h" 44 #include "SharedWorkerRepository.h"
45 #include "UseCounter.h"
46 #include "core/platform/KURL.h"
47 47
48 namespace WebCore { 48 namespace WebCore {
49 49
50 inline SharedWorker::SharedWorker(ScriptExecutionContext* context) 50 inline SharedWorker::SharedWorker(ScriptExecutionContext* context)
51 : AbstractWorker(context) 51 : AbstractWorker(context)
52 { 52 {
53 } 53 }
54 54
55 PassRefPtr<SharedWorker> SharedWorker::create(ScriptExecutionContext* context, c onst String& url, const String& name, ExceptionCode& ec) 55 PassRefPtr<SharedWorker> SharedWorker::create(ScriptExecutionContext* context, c onst String& url, const String& name, ExceptionCode& ec)
56 { 56 {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 } 88 }
89 89
90 const AtomicString& SharedWorker::interfaceName() const 90 const AtomicString& SharedWorker::interfaceName() const
91 { 91 {
92 return eventNames().interfaceForSharedWorker; 92 return eventNames().interfaceForSharedWorker;
93 } 93 }
94 94
95 } // namespace WebCore 95 } // namespace WebCore
96 96
97 #endif // ENABLE(SHARED_WORKERS) 97 #endif // ENABLE(SHARED_WORKERS)
OLDNEW
« no previous file with comments | « Source/core/tests/LayoutUnit.cpp ('k') | Source/core/workers/SharedWorkerContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698