| 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_PUBLIC_BROWSER_SITE_INSTANCE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_SITE_INSTANCE_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_SITE_INSTANCE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_SITE_INSTANCE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 11 #include "googleurl/src/gurl.h" | 11 #include "url/gurl.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 class BrowserContext; | 14 class BrowserContext; |
| 15 class BrowsingInstance; | 15 class BrowsingInstance; |
| 16 class RenderProcessHost; | 16 class RenderProcessHost; |
| 17 | 17 |
| 18 /////////////////////////////////////////////////////////////////////////////// | 18 /////////////////////////////////////////////////////////////////////////////// |
| 19 // SiteInstance interface. | 19 // SiteInstance interface. |
| 20 // | 20 // |
| 21 // A SiteInstance represents a group of web pages that may be able to | 21 // A SiteInstance represents a group of web pages that may be able to |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 protected: | 141 protected: |
| 142 friend class base::RefCounted<SiteInstance>; | 142 friend class base::RefCounted<SiteInstance>; |
| 143 | 143 |
| 144 SiteInstance() {} | 144 SiteInstance() {} |
| 145 virtual ~SiteInstance() {} | 145 virtual ~SiteInstance() {} |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 } // namespace content. | 148 } // namespace content. |
| 149 | 149 |
| 150 #endif // CONTENT_PUBLIC_BROWSER_SITE_INSTANCE_H_ | 150 #endif // CONTENT_PUBLIC_BROWSER_SITE_INSTANCE_H_ |
| OLD | NEW |