| 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/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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |