| Index: chrome/browser/google/google_update.cc
|
| diff --git a/chrome/browser/google/google_update.cc b/chrome/browser/google/google_update.cc
|
| index d5a4a769f139e652e0f3d6d1e97e7c58ff27cfa1..aa571b941200921b7f89aea6e52e0490aa6219e4 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));
|
|
|