| Index: views/window/dialog_delegate.h
|
| diff --git a/views/window/dialog_delegate.h b/views/window/dialog_delegate.h
|
| index 629d2908e090d4579c44efb75330a93e810490f3..23b835a86a7a38854b0700d1295a8c763dad4f63 100644
|
| --- a/views/window/dialog_delegate.h
|
| +++ b/views/window/dialog_delegate.h
|
| @@ -87,11 +87,10 @@ class VIEWS_EXPORT DialogDelegate : public WidgetDelegate {
|
| // For Dialog boxes, this is called when the user presses the "OK" button,
|
| // or the Enter key. Can also be called on Esc key or close button
|
| // presses if there is no "Cancel" button. This function should return
|
| - // true if the window can be closed after the window can be closed after
|
| - // it returns, or false if it must remain open. If |window_closing| is
|
| - // true, it means that this handler is being called because the window is
|
| - // being closed (e.g. by Window::Close) and there is no Cancel handler,
|
| - // so Accept is being called instead.
|
| + // true if the window can be closed after it returns, or false if it must
|
| + // remain open. If |window_closing| is true, it means that this handler is
|
| + // being called because the window is being closed (e.g. by Window::Close)
|
| + // and there is no Cancel handler, so Accept is being called instead.
|
| virtual bool Accept(bool window_closing);
|
| virtual bool Accept();
|
|
|
|
|