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_RENDERER_RENDER_THREAD_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 const std::string& highlight_color); | 515 const std::string& highlight_color); |
516 #endif | 516 #endif |
517 void OnCreateNewSharedWorker( | 517 void OnCreateNewSharedWorker( |
518 const WorkerProcessMsg_CreateWorker_Params& params); | 518 const WorkerProcessMsg_CreateWorker_Params& params); |
519 bool RendererIsHidden() const; | 519 bool RendererIsHidden() const; |
520 void OnRendererHidden(); | 520 void OnRendererHidden(); |
521 void OnRendererVisible(); | 521 void OnRendererVisible(); |
522 | 522 |
523 void ReleaseFreeMemory(); | 523 void ReleaseFreeMemory(); |
524 | 524 |
| 525 void OnSyncMemoryPressure( |
| 526 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level); |
| 527 |
525 // These objects live solely on the render thread. | 528 // These objects live solely on the render thread. |
526 std::unique_ptr<AppCacheDispatcher> appcache_dispatcher_; | 529 std::unique_ptr<AppCacheDispatcher> appcache_dispatcher_; |
527 std::unique_ptr<DomStorageDispatcher> dom_storage_dispatcher_; | 530 std::unique_ptr<DomStorageDispatcher> dom_storage_dispatcher_; |
528 std::unique_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; | 531 std::unique_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; |
529 std::unique_ptr<scheduler::RendererScheduler> renderer_scheduler_; | 532 std::unique_ptr<scheduler::RendererScheduler> renderer_scheduler_; |
530 std::unique_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; | 533 std::unique_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; |
531 std::unique_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; | 534 std::unique_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; |
532 std::unique_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_; | 535 std::unique_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_; |
533 std::unique_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; | 536 std::unique_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; |
534 | 537 |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 712 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
710 }; | 713 }; |
711 | 714 |
712 #if defined(COMPILER_MSVC) | 715 #if defined(COMPILER_MSVC) |
713 #pragma warning(pop) | 716 #pragma warning(pop) |
714 #endif | 717 #endif |
715 | 718 |
716 } // namespace content | 719 } // namespace content |
717 | 720 |
718 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 721 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |