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

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

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 #ifndef CHROME_RENDERER_WEB_SHARED_WORKER_REPOSITORY_IMPL_H_
6 #define CHROME_RENDERER_WEB_SHARED_WORKER_REPOSITORY_IMPL_H_
7
8 #include "webkit/api/public/WebSharedWorkerRepository.h"
9
10 class WebKit::WebSharedWorker;
11
12 class WebSharedWorkerRepositoryImpl : public WebKit::WebSharedWorkerRepository {
13 virtual WebKit::WebSharedWorker* lookup(const WebKit::WebURL& url,
14 const WebKit::WebString& name,
15 DocumentID document);
16
17 virtual void documentDetached(DocumentID document);
18
19 virtual bool hasSharedWorkers(DocumentID document);
20 };
21
22 #endif // CHROME_RENDERER_WEB_SHARED_WORKER_REPOSITORY_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698