| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.  Use of this | 
|  | 2 // source code is governed by a BSD-style license that can be found in the | 
|  | 3 // LICENSE file. | 
|  | 4 | 
|  | 5 #include "chrome/renderer/websharedworkerrepository_impl.h" | 
|  | 6 | 
|  | 7 WebKit::WebSharedWorker* WebSharedWorkerRepositoryImpl::lookup( | 
|  | 8     const WebKit::WebURL& url, | 
|  | 9     const WebKit::WebString& name, | 
|  | 10     DocumentID document) { | 
|  | 11     return NULL; | 
|  | 12 } | 
|  | 13 | 
|  | 14 void WebSharedWorkerRepositoryImpl::documentDetached( | 
|  | 15     DocumentID document) { | 
|  | 16     // TODO(atwilson): Update this to call to WorkerService to shutdown any | 
|  | 17     // associated SharedWorkers. | 
|  | 18 } | 
|  | 19 | 
|  | 20 bool WebSharedWorkerRepositoryImpl::hasSharedWorkers( | 
|  | 21     DocumentID document) { | 
|  | 22     // TODO(atwilson): Update this when we track shared worker creation. | 
|  | 23     return false; | 
|  | 24 } | 
| OLD | NEW | 
|---|