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

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

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
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 19 matching lines...) Expand all
30 30
31 #ifndef ServiceWorkerGlobalScopeProxy_h 31 #ifndef ServiceWorkerGlobalScopeProxy_h
32 #define ServiceWorkerGlobalScopeProxy_h 32 #define ServiceWorkerGlobalScopeProxy_h
33 33
34 #include "core/workers/WorkerReportingProxy.h" 34 #include "core/workers/WorkerReportingProxy.h"
35 #include "public/platform/WebString.h" 35 #include "public/platform/WebString.h"
36 #include "public/web/WebServiceWorkerContextProxy.h" 36 #include "public/web/WebServiceWorkerContextProxy.h"
37 #include "wtf/Forward.h" 37 #include "wtf/Forward.h"
38 #include "wtf/OwnPtr.h" 38 #include "wtf/OwnPtr.h"
39 39
40 namespace WebCore { 40 namespace blink {
41 class ExecutionContext; 41 class ExecutionContext;
42 } 42 }
43 43
44 namespace blink { 44 namespace blink {
45 45
46 class WebEmbeddedWorkerImpl; 46 class WebEmbeddedWorkerImpl;
47 class WebServiceWorkerContextClient; 47 class WebServiceWorkerContextClient;
48 class WebServiceWorkerRequest; 48 class WebServiceWorkerRequest;
49 49
50 // This class is created and destructed on the main thread, but live most 50 // This class is created and destructed on the main thread, but live most
51 // of its time as a resident of the worker thread. 51 // of its time as a resident of the worker thread.
52 // All methods other than its ctor/dtor are called on the worker thread. 52 // All methods other than its ctor/dtor are called on the worker thread.
53 // 53 //
54 // This implements WebServiceWorkerContextProxy, which connects ServiceWorker's 54 // This implements WebServiceWorkerContextProxy, which connects ServiceWorker's
55 // WorkerGlobalScope and embedder/chrome, and implements ServiceWorker-specific 55 // WorkerGlobalScope and embedder/chrome, and implements ServiceWorker-specific
56 // events/upcall methods that are to be called by embedder/chromium, 56 // events/upcall methods that are to be called by embedder/chromium,
57 // e.g. onfetch. 57 // e.g. onfetch.
58 // 58 //
59 // An instance of this class is supposed to outlive until 59 // An instance of this class is supposed to outlive until
60 // workerGlobalScopeDestroyed() is called by its corresponding 60 // workerGlobalScopeDestroyed() is called by its corresponding
61 // WorkerGlobalScope. 61 // WorkerGlobalScope.
62 class ServiceWorkerGlobalScopeProxy FINAL : 62 class ServiceWorkerGlobalScopeProxy FINAL :
63 public WebServiceWorkerContextProxy, 63 public WebServiceWorkerContextProxy,
64 public WebCore::WorkerReportingProxy { 64 public blink::WorkerReportingProxy {
65 WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy); 65 WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy);
66 public: 66 public:
67 static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImp l&, WebCore::ExecutionContext&, WebServiceWorkerContextClient&); 67 static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImp l&, blink::ExecutionContext&, WebServiceWorkerContextClient&);
68 virtual ~ServiceWorkerGlobalScopeProxy(); 68 virtual ~ServiceWorkerGlobalScopeProxy();
69 69
70 // WebServiceWorkerContextProxy overrides: 70 // WebServiceWorkerContextProxy overrides:
71 virtual void dispatchActivateEvent(int) OVERRIDE; 71 virtual void dispatchActivateEvent(int) OVERRIDE;
72 virtual void dispatchInstallEvent(int) OVERRIDE; 72 virtual void dispatchInstallEvent(int) OVERRIDE;
73 virtual void dispatchFetchEvent(int, const WebServiceWorkerRequest&) OVERRID E; 73 virtual void dispatchFetchEvent(int, const WebServiceWorkerRequest&) OVERRID E;
74 virtual void dispatchMessageEvent(const WebString& message, const WebMessage PortChannelArray&) OVERRIDE; 74 virtual void dispatchMessageEvent(const WebString& message, const WebMessage PortChannelArray&) OVERRIDE;
75 virtual void dispatchPushEvent(int, const WebString& data) OVERRIDE; 75 virtual void dispatchPushEvent(int, const WebString& data) OVERRIDE;
76 virtual void dispatchSyncEvent(int) OVERRIDE; 76 virtual void dispatchSyncEvent(int) OVERRIDE;
77 77
78 // WorkerReportingProxy overrides: 78 // WorkerReportingProxy overrides:
79 virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) OVERRIDE; 79 virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) OVERRIDE;
80 virtual void reportConsoleMessage(WebCore::MessageSource, WebCore::MessageLe vel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE; 80 virtual void reportConsoleMessage(blink::MessageSource, blink::MessageLevel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE;
81 virtual void postMessageToPageInspector(const String&) OVERRIDE; 81 virtual void postMessageToPageInspector(const String&) OVERRIDE;
82 virtual void updateInspectorStateCookie(const String&) OVERRIDE; 82 virtual void updateInspectorStateCookie(const String&) OVERRIDE;
83 virtual void workerGlobalScopeStarted(WebCore::WorkerGlobalScope*) OVERRIDE; 83 virtual void workerGlobalScopeStarted(blink::WorkerGlobalScope*) OVERRIDE;
84 virtual void workerGlobalScopeClosed() OVERRIDE; 84 virtual void workerGlobalScopeClosed() OVERRIDE;
85 virtual void willDestroyWorkerGlobalScope() OVERRIDE; 85 virtual void willDestroyWorkerGlobalScope() OVERRIDE;
86 virtual void workerGlobalScopeDestroyed() OVERRIDE; 86 virtual void workerGlobalScopeDestroyed() OVERRIDE;
87 87
88 private: 88 private:
89 ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerImpl&, WebCore::ExecutionCont ext&, WebServiceWorkerContextClient&); 89 ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerImpl&, blink::ExecutionContex t&, WebServiceWorkerContextClient&);
90 90
91 WebEmbeddedWorkerImpl& m_embeddedWorker; 91 WebEmbeddedWorkerImpl& m_embeddedWorker;
92 WebCore::ExecutionContext& m_executionContext; 92 blink::ExecutionContext& m_executionContext;
93 93
94 WebServiceWorkerContextClient& m_client; 94 WebServiceWorkerContextClient& m_client;
95 95
96 WebCore::WorkerGlobalScope* m_workerGlobalScope; 96 blink::WorkerGlobalScope* m_workerGlobalScope;
97 }; 97 };
98 98
99 } // namespace blink 99 } // namespace blink
100 100
101 #endif // ServiceWorkerGlobalScopeProxy_h 101 #endif // ServiceWorkerGlobalScopeProxy_h
OLDNEW
« no previous file with comments | « Source/web/ServiceWorkerGlobalScopeClientImpl.cpp ('k') | Source/web/ServiceWorkerGlobalScopeProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698