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

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

Issue 19693006: Pass column as 4th argument to WorkerGlobalScope.onerror handler (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 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
« no previous file with comments | « Source/core/workers/WorkerReportingProxy.h ('k') | Source/web/WebSharedWorkerImpl.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 * 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 , public WebWorkerBase 66 , public WebWorkerBase
67 , public WebFrameClient 67 , public WebFrameClient
68 , public WebSharedWorker { 68 , public WebSharedWorker {
69 public: 69 public:
70 explicit WebSharedWorkerImpl(WebSharedWorkerClient*); 70 explicit WebSharedWorkerImpl(WebSharedWorkerClient*);
71 71
72 virtual void postMessageToWorkerObject( 72 virtual void postMessageToWorkerObject(
73 PassRefPtr<WebCore::SerializedScriptValue>, 73 PassRefPtr<WebCore::SerializedScriptValue>,
74 PassOwnPtr<WebCore::MessagePortChannelArray>); 74 PassOwnPtr<WebCore::MessagePortChannelArray>);
75 virtual void postExceptionToWorkerObject( 75 virtual void postExceptionToWorkerObject(
76 const WTF::String&, int, const WTF::String&); 76 const WTF::String&, int, int, const WTF::String&);
77 virtual void postConsoleMessageToWorkerObject( 77 virtual void postConsoleMessageToWorkerObject(
78 WebCore::MessageSource, WebCore::MessageLevel, 78 WebCore::MessageSource, WebCore::MessageLevel,
79 const WTF::String&, int, const WTF::String&); 79 const WTF::String&, int, const WTF::String&);
80 virtual void postMessageToPageInspector(const WTF::String&); 80 virtual void postMessageToPageInspector(const WTF::String&);
81 virtual void updateInspectorStateCookie(const WTF::String&); 81 virtual void updateInspectorStateCookie(const WTF::String&);
82 virtual void confirmMessageFromWorkerObject(bool); 82 virtual void confirmMessageFromWorkerObject(bool);
83 virtual void reportPendingActivity(bool); 83 virtual void reportPendingActivity(bool);
84 virtual void workerGlobalScopeClosed(); 84 virtual void workerGlobalScopeClosed();
85 virtual void workerGlobalScopeDestroyed(); 85 virtual void workerGlobalScopeDestroyed();
86 virtual WebView* view() const { return m_webView; } 86 virtual WebView* view() const { return m_webView; }
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 177
178 RefPtr<WebCore::WorkerThread> m_workerThread; 178 RefPtr<WebCore::WorkerThread> m_workerThread;
179 179
180 WebSharedWorkerClient* m_client; 180 WebSharedWorkerClient* m_client;
181 bool m_pauseWorkerContextOnStart; 181 bool m_pauseWorkerContextOnStart;
182 }; 182 };
183 183
184 } // namespace WebKit 184 } // namespace WebKit
185 185
186 #endif 186 #endif
OLDNEW
« no previous file with comments | « Source/core/workers/WorkerReportingProxy.h ('k') | Source/web/WebSharedWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698