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

Side by Side Diff: content/public/test/mock_render_process_host.cc

Issue 2350423003: [Tentaive patch for discussion] Add Purge+Suspend metrics as UMA.
Patch Set: Fixed misuse of CanPurgeAndSuspend Created 4 years, 2 months 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
« no previous file with comments | « content/public/test/mock_render_process_host.h ('k') | content/renderer/render_thread_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/public/test/mock_render_process_host.h" 5 #include "content/public/test/mock_render_process_host.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 void MockRenderProcessHost::ForceReleaseWorkerRefCounts() { 305 void MockRenderProcessHost::ForceReleaseWorkerRefCounts() {
306 worker_ref_count_ = 0; 306 worker_ref_count_ = 0;
307 } 307 }
308 308
309 bool MockRenderProcessHost::IsWorkerRefCountDisabled() { 309 bool MockRenderProcessHost::IsWorkerRefCountDisabled() {
310 return false; 310 return false;
311 } 311 }
312 312
313 void MockRenderProcessHost::PurgeAndSuspend() {} 313 void MockRenderProcessHost::PurgeAndSuspend() {}
314 314
315 const base::TimeTicks& MockRenderProcessHost::GetLastPurgeAndSuspendTime()
316 const {
317 static base::TimeTicks dummy_time = base::TimeTicks::Now();
318 return dummy_time;
319 }
320
315 void MockRenderProcessHost::FilterURL(bool empty_allowed, GURL* url) { 321 void MockRenderProcessHost::FilterURL(bool empty_allowed, GURL* url) {
316 RenderProcessHostImpl::FilterURL(this, empty_allowed, url); 322 RenderProcessHostImpl::FilterURL(this, empty_allowed, url);
317 } 323 }
318 324
319 #if defined(ENABLE_WEBRTC) 325 #if defined(ENABLE_WEBRTC)
320 void MockRenderProcessHost::EnableAudioDebugRecordings( 326 void MockRenderProcessHost::EnableAudioDebugRecordings(
321 const base::FilePath& file) { 327 const base::FilePath& file) {
322 } 328 }
323 329
324 void MockRenderProcessHost::DisableAudioDebugRecordings() {} 330 void MockRenderProcessHost::DisableAudioDebugRecordings() {}
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 for (ScopedVector<MockRenderProcessHost>::iterator it = processes_.begin(); 391 for (ScopedVector<MockRenderProcessHost>::iterator it = processes_.begin();
386 it != processes_.end(); ++it) { 392 it != processes_.end(); ++it) {
387 if (*it == host) { 393 if (*it == host) {
388 processes_.weak_erase(it); 394 processes_.weak_erase(it);
389 break; 395 break;
390 } 396 }
391 } 397 }
392 } 398 }
393 399
394 } // namespace content 400 } // namespace content
OLDNEW
« no previous file with comments | « content/public/test/mock_render_process_host.h ('k') | content/renderer/render_thread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698