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

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

Issue 6713005: Move a bunch of gpu/worker/plugin renderer code to content. I temporarily disabled the sad plugi... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_RENDERER_WEBSHAREDWORKERREPOSITORY_IMPL_H_ 5 #ifndef CONTENT_RENDERER_WEBSHAREDWORKERREPOSITORY_IMPL_H_
6 #define CHROME_RENDERER_WEBSHAREDWORKERREPOSITORY_IMPL_H_ 6 #define CONTENT_RENDERER_WEBSHAREDWORKERREPOSITORY_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorkerReposi tory.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorkerReposi tory.h"
10 10
11 #include "base/hash_tables.h" 11 #include "base/hash_tables.h"
12 12
13 namespace WebKit { 13 namespace WebKit {
14 class WebSharedWorker; 14 class WebSharedWorker;
15 } 15 }
16 16
17 class WebSharedWorkerRepositoryImpl : public WebKit::WebSharedWorkerRepository { 17 class WebSharedWorkerRepositoryImpl : public WebKit::WebSharedWorkerRepository {
18 public: 18 public:
19 WebSharedWorkerRepositoryImpl(); 19 WebSharedWorkerRepositoryImpl();
20 virtual ~WebSharedWorkerRepositoryImpl(); 20 virtual ~WebSharedWorkerRepositoryImpl();
21 21
22 virtual void addSharedWorker(WebKit::WebSharedWorker*, DocumentID document); 22 virtual void addSharedWorker(WebKit::WebSharedWorker*, DocumentID document);
23 virtual void documentDetached(DocumentID document); 23 virtual void documentDetached(DocumentID document);
24 24
25 // Returns true if the document has created a SharedWorker (used by the 25 // Returns true if the document has created a SharedWorker (used by the
26 // WebKit code to determine if the document can be suspended). 26 // WebKit code to determine if the document can be suspended).
27 virtual bool hasSharedWorkers(DocumentID document); 27 virtual bool hasSharedWorkers(DocumentID document);
28 28
29 private: 29 private:
30 // The set of documents that have created a SharedWorker. 30 // The set of documents that have created a SharedWorker.
31 typedef base::hash_set<DocumentID> DocumentSet; 31 typedef base::hash_set<DocumentID> DocumentSet;
32 DocumentSet shared_worker_parents_; 32 DocumentSet shared_worker_parents_;
33 }; 33 };
34 34
35 #endif // CHROME_RENDERER_WEBSHAREDWORKERREPOSITORY_IMPL_H_ 35 #endif // CONTENT_RENDERER_WEBSHAREDWORKERREPOSITORY_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/websharedworker_proxy.cc ('k') | content/renderer/websharedworkerrepository_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698