| Index: chrome/renderer/websharedworkerrepository_impl.h
|
| diff --git a/chrome/renderer/websharedworkerrepository_impl.h b/chrome/renderer/websharedworkerrepository_impl.h
|
| index 745c094f90850c761a93d6b014b5fcf163d49d8d..b11e4a7695c0651750802416121b32d53b1dc41c 100644
|
| --- a/chrome/renderer/websharedworkerrepository_impl.h
|
| +++ b/chrome/renderer/websharedworkerrepository_impl.h
|
| @@ -1,6 +1,6 @@
|
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
|
| -// source code is governed by a BSD-style license that can be found in the
|
| -// LICENSE file.
|
| +// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
|
|
| #ifndef CHROME_RENDERER_WEBSHAREDWORKERREPOSITORY_IMPL_H_
|
| #define CHROME_RENDERER_WEBSHAREDWORKERREPOSITORY_IMPL_H_
|
| @@ -11,24 +11,24 @@
|
| #include "base/hash_tables.h"
|
|
|
| namespace WebKit {
|
| - class WebSharedWorker;
|
| +class WebSharedWorker;
|
| }
|
|
|
| class WebSharedWorkerRepositoryImpl : public WebKit::WebSharedWorkerRepository {
|
| public:
|
| - virtual ~WebSharedWorkerRepositoryImpl() {}
|
| + virtual ~WebSharedWorkerRepositoryImpl() {}
|
|
|
| - virtual void addSharedWorker(WebKit::WebSharedWorker*, DocumentID document);
|
| - virtual void documentDetached(DocumentID document);
|
| + virtual void addSharedWorker(WebKit::WebSharedWorker*, DocumentID document);
|
| + virtual void documentDetached(DocumentID document);
|
|
|
| - // Returns true if the document has created a SharedWorker (used by the
|
| - // WebKit code to determine if the document can be suspended).
|
| - virtual bool hasSharedWorkers(DocumentID document);
|
| + // Returns true if the document has created a SharedWorker (used by the
|
| + // WebKit code to determine if the document can be suspended).
|
| + virtual bool hasSharedWorkers(DocumentID document);
|
|
|
| private:
|
| - // The set of documents that have created a SharedWorker.
|
| - typedef base::hash_set<DocumentID> DocumentSet;
|
| - DocumentSet shared_worker_parents_;
|
| + // The set of documents that have created a SharedWorker.
|
| + typedef base::hash_set<DocumentID> DocumentSet;
|
| + DocumentSet shared_worker_parents_;
|
| };
|
|
|
| #endif // CHROME_RENDERER_WEBSHAREDWORKERREPOSITORY_IMPL_H_
|
|
|