| 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 <string> | 11 #include <string> |
| 11 | 12 |
| 12 #include "base/process.h" | 13 #include "base/process.h" |
| 13 #include "base/ref_counted.h" | 14 #include "base/ref_counted.h" |
| 14 #include "base/scoped_ptr.h" | 15 #include "base/scoped_ptr.h" |
| 15 #include "base/shared_memory.h" | 16 #include "base/shared_memory.h" |
| 16 #include "base/string16.h" | 17 #include "base/string16.h" |
| 17 #include "base/timer.h" | 18 #include "base/timer.h" |
| 18 #include "chrome/common/transport_dib.h" | 19 #include "chrome/common/transport_dib.h" |
| 19 #include "chrome/browser/renderer_host/audio_renderer_host.h" | 20 #include "chrome/browser/renderer_host/audio_renderer_host.h" |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 // Buffer visited links and send them to to renderer. | 163 // Buffer visited links and send them to to renderer. |
| 163 scoped_ptr<VisitedLinkUpdater> visited_link_updater_; | 164 scoped_ptr<VisitedLinkUpdater> visited_link_updater_; |
| 164 | 165 |
| 165 // True iff the renderer is a child of a zygote process. | 166 // True iff the renderer is a child of a zygote process. |
| 166 bool zygote_child_; | 167 bool zygote_child_; |
| 167 | 168 |
| 168 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost); | 169 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost); |
| 169 }; | 170 }; |
| 170 | 171 |
| 171 #endif // CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ | 172 #endif // CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ |
| OLD | NEW |