| OLD | NEW |
| 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.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" |
| 11 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
| 12 #include "content/public/browser/browser_thread.h" | 12 #include "content/public/browser/browser_thread.h" |
| 13 #include "content/public/browser/web_contents.h" | 13 #include "content/public/browser/web_contents.h" |
| 14 | 14 |
| 15 using base::TimeTicks; | 15 using base::TimeTicks; |
| 16 using content::WebContents; | 16 using content::WebContents; |
| 17 | 17 |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 tab_data_.is_auto_discardable = state; | 192 tab_data_.is_auto_discardable = state; |
| 193 g_browser_process->GetTabManager()->OnAutoDiscardableStateChange( | 193 g_browser_process->GetTabManager()->OnAutoDiscardableStateChange( |
| 194 web_contents(), state); | 194 web_contents(), state); |
| 195 } | 195 } |
| 196 | 196 |
| 197 bool TabManager::WebContentsData::IsAutoDiscardable() { | 197 bool TabManager::WebContentsData::IsAutoDiscardable() { |
| 198 return tab_data_.is_auto_discardable; | 198 return tab_data_.is_auto_discardable; |
| 199 } | 199 } |
| 200 | 200 |
| 201 } // namespace memory | 201 } // namespace memory |
| OLD | NEW |