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

Side by Side Diff: third_party/WebKit/Source/web/WebSharedWorkerImpl.h

Issue 2539443004: Worker: Move ParentFrameTaskRunners from WorkerReportingProxy to ObjectProxy (Closed)
Patch Set: Created 4 years 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 76
77 // WorkerReportingProxy methods: 77 // WorkerReportingProxy methods:
78 void reportException(const WTF::String&, 78 void reportException(const WTF::String&,
79 std::unique_ptr<SourceLocation>, 79 std::unique_ptr<SourceLocation>,
80 int exceptionId) override; 80 int exceptionId) override;
81 void reportConsoleMessage(MessageSource, 81 void reportConsoleMessage(MessageSource,
82 MessageLevel, 82 MessageLevel,
83 const String& message, 83 const String& message,
84 SourceLocation*) override; 84 SourceLocation*) override;
85 void postMessageToPageInspector(const WTF::String&) override; 85 void postMessageToPageInspector(const WTF::String&) override;
86 ParentFrameTaskRunners* getParentFrameTaskRunners() override;
87 void didEvaluateWorkerScript(bool success) override {} 86 void didEvaluateWorkerScript(bool success) override {}
88 void didCloseWorkerGlobalScope() override; 87 void didCloseWorkerGlobalScope() override;
89 void willDestroyWorkerGlobalScope() override {} 88 void willDestroyWorkerGlobalScope() override {}
90 void didTerminateWorkerThread() override; 89 void didTerminateWorkerThread() override;
91 90
92 // WebFrameClient methods to support resource loading thru the 'shadow page'. 91 // WebFrameClient methods to support resource loading thru the 'shadow page'.
93 WebApplicationCacheHost* createApplicationCacheHost( 92 WebApplicationCacheHost* createApplicationCacheHost(
94 WebApplicationCacheHostClient*) override; 93 WebApplicationCacheHostClient*) override;
95 void willSendRequest(WebLocalFrame*, WebURLRequest&) override; 94 void willSendRequest(WebLocalFrame*, WebURLRequest&) override;
96 void didFinishDocumentLoad(WebLocalFrame*) override; 95 void didFinishDocumentLoad(WebLocalFrame*) override;
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 RefPtr<WorkerLoaderProxy> m_loaderProxy; 182 RefPtr<WorkerLoaderProxy> m_loaderProxy;
184 183
185 WebURL m_url; 184 WebURL m_url;
186 WebString m_name; 185 WebString m_name;
187 WebAddressSpace m_creationAddressSpace; 186 WebAddressSpace m_creationAddressSpace;
188 }; 187 };
189 188
190 } // namespace blink 189 } // namespace blink
191 190
192 #endif // WebSharedWorkerImpl_h 191 #endif // WebSharedWorkerImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698