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 #include "content/renderer/render_thread_impl.h" | 5 #include "content/renderer/render_thread_impl.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <limits> | 8 #include <limits> |
9 #include <map> | 9 #include <map> |
10 #include <utility> | 10 #include <utility> |
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
804 // We may not have a MojoShellConnection object in tests that directly | 804 // We may not have a MojoShellConnection object in tests that directly |
805 // instantiate a RenderThreadImpl. | 805 // instantiate a RenderThreadImpl. |
806 if (MojoShellConnection::Get() && | 806 if (MojoShellConnection::Get() && |
807 base::CommandLine::ForCurrentProcess()->HasSwitch( | 807 base::CommandLine::ForCurrentProcess()->HasSwitch( |
808 switches::kUseMusInRenderer)) | 808 switches::kUseMusInRenderer)) |
809 CreateRenderWidgetWindowTreeClientFactory(); | 809 CreateRenderWidgetWindowTreeClientFactory(); |
810 #endif | 810 #endif |
811 | 811 |
812 service_registry()->ConnectToRemoteService( | 812 service_registry()->ConnectToRemoteService( |
813 mojo::GetProxy(&storage_partition_service_)); | 813 mojo::GetProxy(&storage_partition_service_)); |
814 | |
815 is_backgrounded_ = false; | |
816 is_cache_purged_ = false; | |
814 } | 817 } |
815 | 818 |
816 RenderThreadImpl::~RenderThreadImpl() { | 819 RenderThreadImpl::~RenderThreadImpl() { |
817 } | 820 } |
818 | 821 |
819 void RenderThreadImpl::Shutdown() { | 822 void RenderThreadImpl::Shutdown() { |
820 FOR_EACH_OBSERVER( | 823 FOR_EACH_OBSERVER( |
821 RenderThreadObserver, observers_, OnRenderProcessShutdown()); | 824 RenderThreadObserver, observers_, OnRenderProcessShutdown()); |
822 | 825 |
823 if (memory_observer_) { | 826 if (memory_observer_) { |
(...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1672 IPC_MESSAGE_HANDLER(ViewMsg_PurgePluginListCache, OnPurgePluginListCache) | 1675 IPC_MESSAGE_HANDLER(ViewMsg_PurgePluginListCache, OnPurgePluginListCache) |
1673 #endif | 1676 #endif |
1674 IPC_MESSAGE_UNHANDLED(handled = false) | 1677 IPC_MESSAGE_UNHANDLED(handled = false) |
1675 IPC_END_MESSAGE_MAP() | 1678 IPC_END_MESSAGE_MAP() |
1676 return handled; | 1679 return handled; |
1677 } | 1680 } |
1678 | 1681 |
1679 void RenderThreadImpl::OnProcessBackgrounded(bool backgrounded) { | 1682 void RenderThreadImpl::OnProcessBackgrounded(bool backgrounded) { |
1680 ChildThreadImpl::OnProcessBackgrounded(backgrounded); | 1683 ChildThreadImpl::OnProcessBackgrounded(backgrounded); |
1681 | 1684 |
1682 if (backgrounded) | 1685 is_backgrounded_ = backgrounded; |
1686 if (backgrounded) { | |
1683 renderer_scheduler_->OnRendererBackgrounded(); | 1687 renderer_scheduler_->OnRendererBackgrounded(); |
1684 else | 1688 } else { |
1685 renderer_scheduler_->OnRendererForegrounded(); | 1689 renderer_scheduler_->OnRendererForegrounded(); |
1690 is_cache_purged_ = false; | |
1691 } | |
1692 } | |
1693 | |
1694 void RenderThreadImpl::OnProcessPurgeAndSuspend() { | |
1695 ChildThreadImpl::OnProcessPurgeAndSuspend(); | |
1696 if (!is_backgrounded_) | |
1697 return; | |
1698 if (is_cache_purged_) | |
1699 return; | |
1700 // TODO(hajimehoshi): Implement purging e.g. cache (crbug/607077) | |
1701 is_cache_purged_ = true; | |
1702 renderer_scheduler_->SuspendRendererWhenBackgrounded(); | |
dcheng
2016/05/11 17:42:22
Sorry, to clarify my earlier comment: it seems lik
hajimehoshi
2016/05/12 05:20:14
I understood that checking |is_backgrounded| is no
hajimehoshi
2016/05/12 08:33:18
OK, renamed SuspendRendererWhenBackgrounded to Sus
| |
1686 } | 1703 } |
1687 | 1704 |
1688 void RenderThreadImpl::OnCreateNewFrame(FrameMsg_NewFrame_Params params) { | 1705 void RenderThreadImpl::OnCreateNewFrame(FrameMsg_NewFrame_Params params) { |
1689 CompositorDependencies* compositor_deps = this; | 1706 CompositorDependencies* compositor_deps = this; |
1690 RenderFrameImpl::CreateFrame( | 1707 RenderFrameImpl::CreateFrame( |
1691 params.routing_id, params.proxy_routing_id, params.opener_routing_id, | 1708 params.routing_id, params.proxy_routing_id, params.opener_routing_id, |
1692 params.parent_routing_id, params.previous_sibling_routing_id, | 1709 params.parent_routing_id, params.previous_sibling_routing_id, |
1693 params.replication_state, compositor_deps, params.widget_params, | 1710 params.replication_state, compositor_deps, params.widget_params, |
1694 params.frame_owner_properties); | 1711 params.frame_owner_properties); |
1695 } | 1712 } |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2046 } | 2063 } |
2047 | 2064 |
2048 void RenderThreadImpl::PendingRenderFrameConnect::OnConnectionError() { | 2065 void RenderThreadImpl::PendingRenderFrameConnect::OnConnectionError() { |
2049 size_t erased = | 2066 size_t erased = |
2050 RenderThreadImpl::current()->pending_render_frame_connects_.erase( | 2067 RenderThreadImpl::current()->pending_render_frame_connects_.erase( |
2051 routing_id_); | 2068 routing_id_); |
2052 DCHECK_EQ(1u, erased); | 2069 DCHECK_EQ(1u, erased); |
2053 } | 2070 } |
2054 | 2071 |
2055 } // namespace content | 2072 } // namespace content |
OLD | NEW |