diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-08 01:03:16 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-08 01:03:16 +0000 |
commit | 466a92233d4fd084e5e272b3e2af91b19e7b7edc (patch) | |
tree | 3e552ad59eaaf99b7e1020a8d23c624fa46f05bb /chrome_frame/utils.cc | |
parent | b04cfb5ac972b460323dba7e3e79105ee44b491a (diff) | |
download | chromium_src-466a92233d4fd084e5e272b3e2af91b19e7b7edc.zip chromium_src-466a92233d4fd084e5e272b3e2af91b19e7b7edc.tar.gz chromium_src-466a92233d4fd084e5e272b3e2af91b19e7b7edc.tar.bz2 |
chrome_frame: Get rid of all occurrences of the deprecated ToWStringHack function.
BUG=24874
TEST=trybots
Review URL: http://codereview.chromium.org/2632006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49133 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/utils.cc')
-rw-r--r-- | chrome_frame/utils.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc index 4642d51..8647d86 100644 --- a/chrome_frame/utils.cc +++ b/chrome_frame/utils.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. @@ -355,7 +355,7 @@ std::wstring GetHostProcessName(bool include_extension) { if (!include_extension) { exe = exe.RemoveExtension(); } - return exe.ToWStringHack(); + return exe.value(); } BrowserType GetBrowserType() { |