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_SITE_INSTANCE_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_SITE_INSTANCE_IMPL_H_ |
6 #define CONTENT_BROWSER_SITE_INSTANCE_IMPL_H_ | 6 #define CONTENT_BROWSER_SITE_INSTANCE_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include "base/macros.h" | |
12 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
13 #include "content/browser/renderer_host/render_process_host_impl.h" | 12 #include "content/browser/renderer_host/render_process_host_impl.h" |
14 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
15 #include "content/public/browser/render_process_host_observer.h" | 14 #include "content/public/browser/render_process_host_observer.h" |
16 #include "content/public/browser/site_instance.h" | 15 #include "content/public/browser/site_instance.h" |
17 #include "url/gurl.h" | 16 #include "url/gurl.h" |
18 | 17 |
19 namespace content { | 18 namespace content { |
20 class BrowsingInstance; | 19 class BrowsingInstance; |
21 class RenderProcessHostFactory; | 20 class RenderProcessHostFactory; |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 ProcessReusePolicy process_reuse_policy_; | 199 ProcessReusePolicy process_reuse_policy_; |
201 | 200 |
202 base::ObserverList<Observer, true> observers_; | 201 base::ObserverList<Observer, true> observers_; |
203 | 202 |
204 DISALLOW_COPY_AND_ASSIGN(SiteInstanceImpl); | 203 DISALLOW_COPY_AND_ASSIGN(SiteInstanceImpl); |
205 }; | 204 }; |
206 | 205 |
207 } // namespace content | 206 } // namespace content |
208 | 207 |
209 #endif // CONTENT_BROWSER_SITE_INSTANCE_IMPL_H_ | 208 #endif // CONTENT_BROWSER_SITE_INSTANCE_IMPL_H_ |
OLD | NEW |