| 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_RENDER_PROCESS_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ | 6 #define CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 class GURL; | 23 class GURL; |
| 24 | 24 |
| 25 namespace base { | 25 namespace base { |
| 26 class SharedPersistentMemoryAllocator; | 26 class SharedPersistentMemoryAllocator; |
| 27 class TimeDelta; | 27 class TimeDelta; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace media { | 30 namespace media { |
| 31 class AudioOutputController; | 31 class AudioOutputController; |
| 32 class MediaKeys; | |
| 33 } | 32 } |
| 34 | 33 |
| 35 namespace service_manager { | 34 namespace service_manager { |
| 36 class Connection; | 35 class Connection; |
| 37 class InterfaceProvider; | 36 class InterfaceProvider; |
| 38 } | 37 } |
| 39 | 38 |
| 40 namespace content { | 39 namespace content { |
| 41 class BrowserContext; | 40 class BrowserContext; |
| 42 class BrowserMessageFilter; | 41 class BrowserMessageFilter; |
| 43 class RenderProcessHostObserver; | 42 class RenderProcessHostObserver; |
| 44 class RenderWidgetHost; | |
| 45 class StoragePartition; | 43 class StoragePartition; |
| 46 struct GlobalRequestID; | 44 struct GlobalRequestID; |
| 47 | 45 |
| 48 namespace mojom { | 46 namespace mojom { |
| 49 class Renderer; | 47 class Renderer; |
| 50 } | 48 } |
| 51 | 49 |
| 52 // Interface that represents the browser side of the browser <-> renderer | 50 // Interface that represents the browser side of the browser <-> renderer |
| 53 // communication channel. There will generally be one RenderProcessHost per | 51 // communication channel. There will generally be one RenderProcessHost per |
| 54 // renderer process. | 52 // renderer process. |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 static void SetMaxRendererProcessCount(size_t count); | 387 static void SetMaxRendererProcessCount(size_t count); |
| 390 | 388 |
| 391 // Returns the current maximum number of renderer process hosts kept by the | 389 // Returns the current maximum number of renderer process hosts kept by the |
| 392 // content module. | 390 // content module. |
| 393 static size_t GetMaxRendererProcessCount(); | 391 static size_t GetMaxRendererProcessCount(); |
| 394 }; | 392 }; |
| 395 | 393 |
| 396 } // namespace content. | 394 } // namespace content. |
| 397 | 395 |
| 398 #endif // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ | 396 #endif // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ |
| OLD | NEW |