From 810a52ef77564f1674a600317175743176bcc965 Mon Sep 17 00:00:00 2001 From: "pkasting@chromium.org" Date: Fri, 8 Jan 2010 01:22:15 +0000 Subject: Remove most uses of EmptyString(), EmptyWString(), EmptyString16(), and EmptyGURL(), since the code in question can just use the default constructor. BUG=none TEST=none Review URL: http://codereview.chromium.org/517054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35766 0039d316-1c4b-4281-b951-d872f2087c98 --- views/controls/message_box_view.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'views/controls') diff --git a/views/controls/message_box_view.cc b/views/controls/message_box_view.cc index 2544c03..df6a580 100644 --- a/views/controls/message_box_view.cc +++ b/views/controls/message_box_view.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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. @@ -48,7 +48,7 @@ MessageBoxView::MessageBoxView(int dialog_flags, std::wstring MessageBoxView::GetInputText() { if (prompt_field_) return UTF16ToWideHack(prompt_field_->text()); - return EmptyWString(); + return std::wstring(); } bool MessageBoxView::IsCheckBoxSelected() { -- cgit v1.1