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

Side by Side Diff: chrome/renderer/websharedworkerrepository_impl.cc

Issue 340036: Initial pass of shared workers renderer-side code (Closed)
Patch Set: Changes reflecting review feedback Created 11 years, 1 month 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
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698