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

Side by Side Diff: Source/modules/serviceworkers/ServiceWorker.cpp

Issue 505063002: ServiceWorker: throw when close() or terminate() called (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add infinite fetch loop Created 6 years, 3 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // Disentangle the port in preparation for sending it to the remote context. 78 // Disentangle the port in preparation for sending it to the remote context.
79 OwnPtr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(por ts, exceptionState); 79 OwnPtr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(por ts, exceptionState);
80 if (exceptionState.hadException()) 80 if (exceptionState.hadException())
81 return; 81 return;
82 82
83 WebString messageString = message->toWireString(); 83 WebString messageString = message->toWireString();
84 OwnPtr<WebMessagePortChannelArray> webChannels = MessagePort::toWebMessagePo rtChannelArray(channels.release()); 84 OwnPtr<WebMessagePortChannelArray> webChannels = MessagePort::toWebMessagePo rtChannelArray(channels.release());
85 m_outerWorker->postMessage(messageString, webChannels.leakPtr()); 85 m_outerWorker->postMessage(messageString, webChannels.leakPtr());
86 } 86 }
87 87
88 void ServiceWorker::terminate(ExceptionState& exceptionState)
89 {
90 exceptionState.throwDOMException(InvalidAccessError, "Not supported.");
91 }
92
88 bool ServiceWorker::isReady() 93 bool ServiceWorker::isReady()
89 { 94 {
90 return m_proxyState == Ready; 95 return m_proxyState == Ready;
91 } 96 }
92 97
93 void ServiceWorker::dispatchStateChangeEvent() 98 void ServiceWorker::dispatchStateChangeEvent()
94 { 99 {
95 ASSERT(isReady()); 100 ASSERT(isReady());
96 this->dispatchEvent(Event::create(EventTypeNames::statechange)); 101 this->dispatchEvent(Event::create(EventTypeNames::statechange));
97 } 102 }
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 , WebServiceWorkerProxy(this) 248 , WebServiceWorkerProxy(this)
244 , m_outerWorker(worker) 249 , m_outerWorker(worker)
245 , m_proxyState(Initial) 250 , m_proxyState(Initial)
246 { 251 {
247 ScriptWrappable::init(this); 252 ScriptWrappable::init(this);
248 ASSERT(m_outerWorker); 253 ASSERT(m_outerWorker);
249 m_outerWorker->setProxy(this); 254 m_outerWorker->setProxy(this);
250 } 255 }
251 256
252 } // namespace blink 257 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorker.h ('k') | Source/modules/serviceworkers/ServiceWorker.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698