diff options
author | kouhei@chromium.org <kouhei@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 16:21:47 +0000 |
---|---|---|
committer | kouhei@chromium.org <kouhei@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 16:21:47 +0000 |
commit | d5869bfdb619d61de822475c3072cc6601fe33ab (patch) | |
tree | fbdbd14ab60eaa517f86b7778121b0eb0961b607 /ui/views | |
parent | 7d4c1daa751efe2761506ba6d7df6b9349ce2859 (diff) | |
download | chromium_src-d5869bfdb619d61de822475c3072cc6601fe33ab.zip chromium_src-d5869bfdb619d61de822475c3072cc6601fe33ab.tar.gz chromium_src-d5869bfdb619d61de822475c3072cc6601fe33ab.tar.bz2 |
Add support for NetLog logging to json file in content_shell.
This patch adds support for "--log-net-log" command line option in content_shell.
When the commandline option is specified, NetLogLogger is used to log all network activities to a file.
BUG=None
Review URL: https://chromiumcodereview.appspot.com/17633005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209993 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views')
-rw-r--r-- | ui/views/examples/content_client/examples_browser_main_parts.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/views/examples/content_client/examples_browser_main_parts.cc b/ui/views/examples/content_client/examples_browser_main_parts.cc index 4cfc804..a880efe 100644 --- a/ui/views/examples/content_client/examples_browser_main_parts.cc +++ b/ui/views/examples/content_client/examples_browser_main_parts.cc @@ -36,7 +36,7 @@ ExamplesBrowserMainParts::~ExamplesBrowserMainParts() { } void ExamplesBrowserMainParts::PreMainMessageLoopRun() { - browser_context_.reset(new content::ShellBrowserContext(false)); + browser_context_.reset(new content::ShellBrowserContext(false, NULL)); #if !defined(OS_CHROMEOS) && defined(USE_AURA) gfx::Screen::SetScreenInstance( |