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

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

Issue 153083006: Move serviceworker/ module to oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 return adoptPtr(new ServiceWorkerGlobalScopeProxy(embeddedWorker, executionC ontext, client)); 52 return adoptPtr(new ServiceWorkerGlobalScopeProxy(embeddedWorker, executionC ontext, client));
53 } 53 }
54 54
55 ServiceWorkerGlobalScopeProxy::~ServiceWorkerGlobalScopeProxy() 55 ServiceWorkerGlobalScopeProxy::~ServiceWorkerGlobalScopeProxy()
56 { 56 {
57 } 57 }
58 58
59 void ServiceWorkerGlobalScopeProxy::dispatchInstallEvent(int eventID) 59 void ServiceWorkerGlobalScopeProxy::dispatchInstallEvent(int eventID)
60 { 60 {
61 ASSERT(m_workerGlobalScope); 61 ASSERT(m_workerGlobalScope);
62 RefPtr<WaitUntilObserver> observer = WaitUntilObserver::create(m_workerGloba lScope, eventID); 62 RefPtrWillBeRawPtr<WaitUntilObserver> observer = WaitUntilObserver::create(m _workerGlobalScope, eventID);
63 observer->willDispatchEvent(); 63 observer->willDispatchEvent();
64 m_workerGlobalScope->dispatchEvent(InstallEvent::create(EventTypeNames::inst all, EventInit(), observer)); 64 m_workerGlobalScope->dispatchEvent(InstallEvent::create(EventTypeNames::inst all, EventInit(), observer));
65 observer->didDispatchEvent(); 65 observer->didDispatchEvent();
66 } 66 }
67 67
68 void ServiceWorkerGlobalScopeProxy::reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) 68 void ServiceWorkerGlobalScopeProxy::reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL)
69 { 69 {
70 m_client.reportException(errorMessage, lineNumber, columnNumber, sourceURL); 70 m_client.reportException(errorMessage, lineNumber, columnNumber, sourceURL);
71 } 71 }
72 72
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 105
106 ServiceWorkerGlobalScopeProxy::ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerIm pl& embeddedWorker, ExecutionContext& executionContext, WebServiceWorkerContextC lient& client) 106 ServiceWorkerGlobalScopeProxy::ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerIm pl& embeddedWorker, ExecutionContext& executionContext, WebServiceWorkerContextC lient& client)
107 : m_embeddedWorker(embeddedWorker) 107 : m_embeddedWorker(embeddedWorker)
108 , m_executionContext(executionContext) 108 , m_executionContext(executionContext)
109 , m_client(client) 109 , m_client(client)
110 , m_workerGlobalScope(0) 110 , m_workerGlobalScope(0)
111 { 111 {
112 } 112 }
113 113
114 } // namespace blink 114 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698