| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 | 159 |
| 160 // Used in single-process mode. | 160 // Used in single-process mode. |
| 161 scoped_ptr<RendererMainThread> in_process_renderer_; | 161 scoped_ptr<RendererMainThread> in_process_renderer_; |
| 162 | 162 |
| 163 // Buffer visited links and send them to to renderer. | 163 // Buffer visited links and send them to to renderer. |
| 164 scoped_ptr<VisitedLinkUpdater> visited_link_updater_; | 164 scoped_ptr<VisitedLinkUpdater> visited_link_updater_; |
| 165 | 165 |
| 166 // True iff the renderer is a child of a zygote process. | 166 // True iff the renderer is a child of a zygote process. |
| 167 bool zygote_child_; | 167 bool zygote_child_; |
| 168 | 168 |
| 169 // True if FastShutdownIfPossible was called and was successful. |
| 170 bool fast_shutdown_; |
| 171 |
| 169 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost); | 172 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost); |
| 170 }; | 173 }; |
| 171 | 174 |
| 172 #endif // CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ | 175 #endif // CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ |
| OLD | NEW |