| 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 // After this is called, the Increment/DecrementWorkerRefCount functions must | 310 // After this is called, the Increment/DecrementWorkerRefCount functions must |
| 311 // not be called. | 311 // not be called. |
| 312 virtual void ForceReleaseWorkerRefCounts() = 0; | 312 virtual void ForceReleaseWorkerRefCounts() = 0; |
| 313 | 313 |
| 314 // Returns true if ForceReleaseWorkerRefCounts was called. | 314 // Returns true if ForceReleaseWorkerRefCounts was called. |
| 315 virtual bool IsWorkerRefCountDisabled() = 0; | 315 virtual bool IsWorkerRefCountDisabled() = 0; |
| 316 | 316 |
| 317 // Purges and suspends the renderer process. | 317 // Purges and suspends the renderer process. |
| 318 virtual void PurgeAndSuspend() = 0; | 318 virtual void PurgeAndSuspend() = 0; |
| 319 | 319 |
| 320 // Resumes the renderer process. |
| 321 virtual void Resume() = 0; |
| 322 |
| 323 // Gets the last time when the renderer process is purged and suspended. |
| 324 virtual const base::TimeTicks& GetLastPurgedAndSuspendedTime() const = 0; |
| 325 |
| 326 // Gets the last time when the renderer process is resumed from suspended. |
| 327 virtual const base::TimeTicks& GetLastResumedTime() const = 0; |
| 328 |
| 320 // Returns the current number of active views in this process. Excludes | 329 // Returns the current number of active views in this process. Excludes |
| 321 // any RenderViewHosts that are swapped out. | 330 // any RenderViewHosts that are swapped out. |
| 322 size_t GetActiveViewCount(); | 331 size_t GetActiveViewCount(); |
| 323 | 332 |
| 324 // Static management functions ----------------------------------------------- | 333 // Static management functions ----------------------------------------------- |
| 325 | 334 |
| 326 // Flag to run the renderer in process. This is primarily | 335 // Flag to run the renderer in process. This is primarily |
| 327 // for debugging purposes. When running "in process", the | 336 // for debugging purposes. When running "in process", the |
| 328 // browser maintains a single RenderProcessHost which communicates | 337 // browser maintains a single RenderProcessHost which communicates |
| 329 // to a RenderProcess which is instantiated in the same process | 338 // to a RenderProcess which is instantiated in the same process |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 static void SetMaxRendererProcessCount(size_t count); | 381 static void SetMaxRendererProcessCount(size_t count); |
| 373 | 382 |
| 374 // Returns the current maximum number of renderer process hosts kept by the | 383 // Returns the current maximum number of renderer process hosts kept by the |
| 375 // content module. | 384 // content module. |
| 376 static size_t GetMaxRendererProcessCount(); | 385 static size_t GetMaxRendererProcessCount(); |
| 377 }; | 386 }; |
| 378 | 387 |
| 379 } // namespace content. | 388 } // namespace content. |
| 380 | 389 |
| 381 #endif // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ | 390 #endif // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ |
| OLD | NEW |