diff options
Diffstat (limited to 'chrome/browser/browser_about_handler.cc')
-rw-r--r-- | chrome/browser/browser_about_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/browser_about_handler.cc b/chrome/browser/browser_about_handler.cc index 2a0eae5..490fb78 100644 --- a/chrome/browser/browser_about_handler.cc +++ b/chrome/browser/browser_about_handler.cc @@ -280,7 +280,7 @@ std::string AboutAbout() { #if defined(OS_CHROMEOS) std::string AboutNetwork(const std::string& query) { int refresh; - StringToInt(query, &refresh); + base::StringToInt(query, &refresh); return chromeos::CrosLibrary::Get()->GetNetworkLibrary()-> GetHtmlInfo(refresh); } |