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

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

Issue 2111353002: Move content's shell connections to the IO thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 5 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
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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 } 262 }
263 263
264 shell::InterfaceRegistry* MockRenderProcessHost::GetInterfaceRegistry() { 264 shell::InterfaceRegistry* MockRenderProcessHost::GetInterfaceRegistry() {
265 return interface_registry_.get(); 265 return interface_registry_.get();
266 } 266 }
267 267
268 shell::InterfaceProvider* MockRenderProcessHost::GetRemoteInterfaces() { 268 shell::InterfaceProvider* MockRenderProcessHost::GetRemoteInterfaces() {
269 return remote_interfaces_.get(); 269 return remote_interfaces_.get();
270 } 270 }
271 271
272 shell::Connection* MockRenderProcessHost::GetChildConnection() {
273 return nullptr;
274 }
275
276 std::unique_ptr<base::SharedPersistentMemoryAllocator> 272 std::unique_ptr<base::SharedPersistentMemoryAllocator>
277 MockRenderProcessHost::TakeMetricsAllocator() { 273 MockRenderProcessHost::TakeMetricsAllocator() {
278 return nullptr; 274 return nullptr;
279 } 275 }
280 276
281 const base::TimeTicks& MockRenderProcessHost::GetInitTimeForNavigationMetrics() 277 const base::TimeTicks& MockRenderProcessHost::GetInitTimeForNavigationMetrics()
282 const { 278 const {
283 static base::TimeTicks dummy_time = base::TimeTicks::Now(); 279 static base::TimeTicks dummy_time = base::TimeTicks::Now();
284 return dummy_time; 280 return dummy_time;
285 } 281 }
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 for (ScopedVector<MockRenderProcessHost>::iterator it = processes_.begin(); 375 for (ScopedVector<MockRenderProcessHost>::iterator it = processes_.begin();
380 it != processes_.end(); ++it) { 376 it != processes_.end(); ++it) {
381 if (*it == host) { 377 if (*it == host) {
382 processes_.weak_erase(it); 378 processes_.weak_erase(it);
383 break; 379 break;
384 } 380 }
385 } 381 }
386 } 382 }
387 383
388 } // namespace content 384 } // namespace content
OLDNEW
« no previous file with comments | « content/public/test/mock_render_process_host.h ('k') | content/renderer/mus/render_widget_window_tree_client_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698