Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: chrome/browser/memory/tab_manager_web_contents_data.cc

Issue 2471613003: Reland of Add Resume logic of Purge+Suspend to TabManager. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "chrome/browser/memory/tab_manager_web_contents_data.h" 5 #include "chrome/browser/memory/tab_manager_web_contents_data.h"
6 6
7 #include "base/metrics/histogram_macros.h" 7 #include "base/metrics/histogram_macros.h"
8 #include "base/time/tick_clock.h" 8 #include "base/time/tick_clock.h"
9 #include "chrome/browser/browser_process.h" 9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/engagement/site_engagement_service.h" 10 #include "chrome/browser/engagement/site_engagement_service.h"
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 g_browser_process->GetTabManager()->OnAutoDiscardableStateChange( 197 g_browser_process->GetTabManager()->OnAutoDiscardableStateChange(
198 web_contents(), state); 198 web_contents(), state);
199 } 199 }
200 200
201 bool TabManager::WebContentsData::IsAutoDiscardable() { 201 bool TabManager::WebContentsData::IsAutoDiscardable() {
202 return tab_data_.is_auto_discardable; 202 return tab_data_.is_auto_discardable;
203 } 203 }
204 204
205 void TabManager::WebContentsData::SetPurgeAndSuspendState( 205 void TabManager::WebContentsData::SetPurgeAndSuspendState(
206 PurgeAndSuspendState state) { 206 PurgeAndSuspendState state) {
207 last_purge_and_suspend_modified_time_ = TimeTicks::Now(); 207 last_purge_and_suspend_modified_time_ = NowTicks();
208 purge_and_suspend_state_ = state; 208 purge_and_suspend_state_ = state;
209 } 209 }
210 210
211 base::TimeTicks TabManager::WebContentsData::LastPurgeAndSuspendModifiedTime() 211 base::TimeTicks TabManager::WebContentsData::LastPurgeAndSuspendModifiedTime()
212 const { 212 const {
213 return last_purge_and_suspend_modified_time_; 213 return last_purge_and_suspend_modified_time_;
214 } 214 }
215 215
216 void TabManager::WebContentsData::SetLastPurgeAndSuspendModifiedTimeForTesting(
217 base::TimeTicks timestamp) {
218 last_purge_and_suspend_modified_time_ = timestamp;
219 }
220
216 TabManager::PurgeAndSuspendState 221 TabManager::PurgeAndSuspendState
217 TabManager::WebContentsData::GetPurgeAndSuspendState() const { 222 TabManager::WebContentsData::GetPurgeAndSuspendState() const {
218 return purge_and_suspend_state_; 223 return purge_and_suspend_state_;
219 } 224 }
220 225
221 } // namespace memory 226 } // namespace memory
OLDNEW
« no previous file with comments | « chrome/browser/memory/tab_manager_web_contents_data.h ('k') | chrome/browser/memory/tab_manager_web_contents_data_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698