diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-17 00:22:07 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-17 00:22:07 +0000 |
commit | 33272e1f0fcbc1dee150323df883293cfb29f58d (patch) | |
tree | e004dbbd4e74433fcbadf93339fa7c4a3eb620ed /chrome/browser/google | |
parent | 502e605ef343c8948a3fe6fc0e36907b9a3f3dba (diff) | |
download | chromium_src-33272e1f0fcbc1dee150323df883293cfb29f58d.zip chromium_src-33272e1f0fcbc1dee150323df883293cfb29f58d.tar.gz chromium_src-33272e1f0fcbc1dee150323df883293cfb29f58d.tar.bz2 |
base: Fix the TODO in string_util.h
This removes the include of stringprintf.h from string_util.h and fix the clients.
BUG=None
TEST=None
R=evan@chromium.org
Review URL: http://codereview.chromium.org/7633055
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/google')
-rw-r--r-- | chrome/browser/google/google_update.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/google/google_update.cc b/chrome/browser/google/google_update.cc index d5a4a76..aa571b9 100644 --- a/chrome/browser/google/google_update.cc +++ b/chrome/browser/google/google_update.cc @@ -11,6 +11,7 @@ #include "base/message_loop.h" #include "base/path_service.h" #include "base/string_util.h" +#include "base/stringprintf.h" #include "base/task.h" #include "base/threading/thread.h" #include "base/win/scoped_comptr.h" @@ -83,7 +84,8 @@ HRESULT CoCreateInstanceAsAdmin(REFCLSID class_id, REFIID interface_id, arraysize(class_id_as_string)); std::wstring elevation_moniker_name = - StringPrintf(L"Elevation:Administrator!new:%ls", class_id_as_string); + base::StringPrintf(L"Elevation:Administrator!new:%ls", + class_id_as_string); BIND_OPTS3 bind_opts; memset(&bind_opts, 0, sizeof(bind_opts)); |