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