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: Source/web/ServiceWorkerGlobalScopeProxy.h

Issue 185643009: Implement ServiceWorker::postMessage() [Blink] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 6 years, 9 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 public WebServiceWorkerContextProxy, 61 public WebServiceWorkerContextProxy,
62 public WebCore::WorkerReportingProxy { 62 public WebCore::WorkerReportingProxy {
63 WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy); 63 WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy);
64 public: 64 public:
65 static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImp l&, WebCore::ExecutionContext&, WebServiceWorkerContextClient&); 65 static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImp l&, WebCore::ExecutionContext&, WebServiceWorkerContextClient&);
66 virtual ~ServiceWorkerGlobalScopeProxy(); 66 virtual ~ServiceWorkerGlobalScopeProxy();
67 67
68 // WebServiceWorkerContextProxy overrides: 68 // WebServiceWorkerContextProxy overrides:
69 virtual void dispatchInstallEvent(int) OVERRIDE; 69 virtual void dispatchInstallEvent(int) OVERRIDE;
70 virtual void dispatchFetchEvent(int) OVERRIDE; 70 virtual void dispatchFetchEvent(int) OVERRIDE;
71 virtual void dispatchMessageEvent(const WebString& message, const WebMessage PortChannelArray&) OVERRIDE;
71 72
72 // WorkerReportingProxy overrides: 73 // WorkerReportingProxy overrides:
73 virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) OVERRIDE; 74 virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) OVERRIDE;
74 virtual void reportConsoleMessage(WebCore::MessageSource, WebCore::MessageLe vel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE; 75 virtual void reportConsoleMessage(WebCore::MessageSource, WebCore::MessageLe vel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE;
75 virtual void postMessageToPageInspector(const String&) OVERRIDE; 76 virtual void postMessageToPageInspector(const String&) OVERRIDE;
76 virtual void updateInspectorStateCookie(const String&) OVERRIDE; 77 virtual void updateInspectorStateCookie(const String&) OVERRIDE;
77 virtual void workerGlobalScopeStarted(WebCore::WorkerGlobalScope*) OVERRIDE; 78 virtual void workerGlobalScopeStarted(WebCore::WorkerGlobalScope*) OVERRIDE;
78 virtual void workerGlobalScopeClosed() OVERRIDE; 79 virtual void workerGlobalScopeClosed() OVERRIDE;
79 virtual void workerGlobalScopeDestroyed() OVERRIDE; 80 virtual void workerGlobalScopeDestroyed() OVERRIDE;
80 81
81 private: 82 private:
82 ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerImpl&, WebCore::ExecutionCont ext&, WebServiceWorkerContextClient&); 83 ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerImpl&, WebCore::ExecutionCont ext&, WebServiceWorkerContextClient&);
83 84
84 WebEmbeddedWorkerImpl& m_embeddedWorker; 85 WebEmbeddedWorkerImpl& m_embeddedWorker;
85 WebCore::ExecutionContext& m_executionContext; 86 WebCore::ExecutionContext& m_executionContext;
86 87
87 WebServiceWorkerContextClient& m_client; 88 WebServiceWorkerContextClient& m_client;
88 89
89 WebCore::WorkerGlobalScope* m_workerGlobalScope; 90 WebCore::WorkerGlobalScope* m_workerGlobalScope;
90 }; 91 };
91 92
92 } // namespace blink 93 } // namespace blink
93 94
94 #endif // ServiceWorkerGlobalScopeProxy_h 95 #endif // ServiceWorkerGlobalScopeProxy_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698