Index: chrome/app/breakpad_win.cc |
diff --git a/chrome/app/breakpad_win.cc b/chrome/app/breakpad_win.cc |
index b85312507a11a980544a752387280d18d2cf9b5c..d24bcdaf6abbd93523dd05016a5cf84a81470d73 100644 |
--- a/chrome/app/breakpad_win.cc |
+++ b/chrome/app/breakpad_win.cc |
@@ -19,6 +19,7 @@ |
#include "base/memory/scoped_ptr.h" |
#include "base/string_split.h" |
#include "base/string_util.h" |
+#include "base/stringprintf.h" |
#include "base/utf_string_conversions.h" |
#include "base/win/registry.h" |
#include "base/win/win_util.h" |
@@ -141,7 +142,7 @@ google_breakpad::CustomClientInfo* GetCustomInfo(const std::wstring& dll_path, |
g_extension_ids_offset = g_custom_entries->size(); |
for (int i = 0; i < kMaxReportedActiveExtensions; ++i) { |
g_custom_entries->push_back(google_breakpad::CustomInfoEntry( |
- StringPrintf(L"extension-%i", i + 1).c_str(), L"")); |
+ base::StringPrintf(L"extension-%i", i + 1).c_str(), L"")); |
} |
// Add empty values for the gpu_info. We'll put the actual values |
@@ -177,7 +178,7 @@ google_breakpad::CustomClientInfo* GetCustomInfo(const std::wstring& dll_path, |
g_url_chunks_offset = g_custom_entries->size(); |
for (int i = 0; i < kMaxUrlChunks; ++i) { |
g_custom_entries->push_back(google_breakpad::CustomInfoEntry( |
- StringPrintf(L"url-chunk-%i", i + 1).c_str(), L"")); |
+ base::StringPrintf(L"url-chunk-%i", i + 1).c_str(), L"")); |
} |
} else { |
g_custom_entries->push_back( |
@@ -342,7 +343,7 @@ static void SetIntegerValue(size_t offset, int value) { |
wcscpy_s((*g_custom_entries)[offset].value, |
google_breakpad::CustomInfoEntry::kValueMaxLength, |
- StringPrintf(L"%d", value).c_str()); |
+ base::StringPrintf(L"%d", value).c_str()); |
} |
extern "C" void __declspec(dllexport) __cdecl SetNumberOfExtensions( |