From c6c6e5651515399af25e8cd70ad17b729c14e09a Mon Sep 17 00:00:00 2001 From: "aa@chromium.org" Date: Tue, 29 Oct 2013 02:40:30 +0000 Subject: Mostly useful for testing. Added default implementations for methods in net::NetworkDelegate to make it easier to implement, and more likely for implementations to be correct. BUG=310297 Review URL: https://codereview.chromium.org/38303002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231489 0039d316-1c4b-4281-b951-d872f2087c98 --- mojo/shell/context.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mojo/shell/context.cc') diff --git a/mojo/shell/context.cc b/mojo/shell/context.cc index 7f7ad79..c2e2f90 100644 --- a/mojo/shell/context.cc +++ b/mojo/shell/context.cc @@ -4,6 +4,7 @@ #include "mojo/shell/context.h" +#include "mojo/shell/network_delegate.h" #include "mojo/system/core_impl.h" namespace mojo { @@ -14,6 +15,7 @@ Context::Context() storage_(), loader_(task_runners_.io_runner(), task_runners_.file_runner(), + scoped_ptr(new NetworkDelegate()), storage_.profile_path()) { system::CoreImpl::Init(); } -- cgit v1.1