| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_WORKER_HOST_WORKER_DOCUMENT_SET_H_ | 5 #ifndef CONTENT_BROWSER_SHARED_WORKER_WORKER_DOCUMENT_SET_H_ |
| 6 #define CONTENT_BROWSER_WORKER_HOST_WORKER_DOCUMENT_SET_H_ | 6 #define CONTENT_BROWSER_SHARED_WORKER_WORKER_DOCUMENT_SET_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 class BrowserMessageFilter; | 14 class BrowserMessageFilter; |
| 15 | 15 |
| 16 // The WorkerDocumentSet tracks all of the DOM documents associated with a | 16 // The WorkerDocumentSet tracks all of the DOM documents associated with a |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 86 |
| 87 private: | 87 private: |
| 88 friend class base::RefCounted<WorkerDocumentSet>; | 88 friend class base::RefCounted<WorkerDocumentSet>; |
| 89 virtual ~WorkerDocumentSet(); | 89 virtual ~WorkerDocumentSet(); |
| 90 | 90 |
| 91 DocumentInfoSet document_set_; | 91 DocumentInfoSet document_set_; |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 } // namespace content | 94 } // namespace content |
| 95 | 95 |
| 96 #endif // CONTENT_BROWSER_WORKER_HOST_WORKER_DOCUMENT_SET_H_ | 96 #endif // CONTENT_BROWSER_SHARED_WORKER_WORKER_DOCUMENT_SET_H_ |
| OLD | NEW |