diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-02 19:01:27 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-02 19:01:27 +0000 |
commit | 7144bbd6ae932dc8bf475150ac6e5aeb9475e9ed (patch) | |
tree | c7a0019fe61be0afc2ff41443569d0298c3531b4 /chrome/browser/diagnostics | |
parent | 4335a785961f3d6fc591750cac386721e88abbf5 (diff) | |
download | chromium_src-7144bbd6ae932dc8bf475150ac6e5aeb9475e9ed.zip chromium_src-7144bbd6ae932dc8bf475150ac6e5aeb9475e9ed.tar.gz chromium_src-7144bbd6ae932dc8bf475150ac6e5aeb9475e9ed.tar.bz2 |
win/diagnostic mode: Restore "Press [enter] to continue" prompt.
I accidentally removed this in http://crrev.com/r111561
BUG=108934
TEST=none
Review URL: http://codereview.chromium.org/9066004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116103 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/diagnostics')
-rw-r--r-- | chrome/browser/diagnostics/diagnostics_main.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/diagnostics/diagnostics_main.cc b/chrome/browser/diagnostics/diagnostics_main.cc index c9658f3..ab4ddab 100644 --- a/chrome/browser/diagnostics/diagnostics_main.cc +++ b/chrome/browser/diagnostics/diagnostics_main.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -353,6 +353,7 @@ int DiagnosticsMain(const CommandLine& command_line) { controller.Run(model); delete model; + console->OnQuit(); delete console; return 0; } |