Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1781)

Unified Diff: chrome/browser/geolocation/wifi_data_provider_unittest_chromeos.cc

Issue 7633055: base: Fix the TODO in string_util.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chrome_mini_installer.cc Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/version_loader.cc ('k') | chrome/browser/google/google_update.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/geolocation/wifi_data_provider_unittest_chromeos.cc
diff --git a/chrome/browser/geolocation/wifi_data_provider_unittest_chromeos.cc b/chrome/browser/geolocation/wifi_data_provider_unittest_chromeos.cc
index 4795bc86ab30e2fb14564d360aecef131f8c289f..1407449bb177b8549814524af4d65dec92e625c0 100644
--- a/chrome/browser/geolocation/wifi_data_provider_unittest_chromeos.cc
+++ b/chrome/browser/geolocation/wifi_data_provider_unittest_chromeos.cc
@@ -1,7 +1,8 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
+#include "base/stringprintf.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/chromeos/cros/mock_network_library.h"
#include "chrome/browser/geolocation/wifi_data_provider_chromeos.h"
@@ -26,10 +27,10 @@ class GeolocationChromeOsWifiDataProviderTest : public testing::Test {
for (int i = 0; i < ssids; ++i) {
for (int j = 0; j < aps_per_ssid; ++j) {
WifiAccessPoint ap;
- ap.name = StringPrintf("SSID %d", i);
+ ap.name = base::StringPrintf("SSID %d", i);
ap.channel = i * 10 + j;
- ap.mac_address = StringPrintf("%02X:%02X:%02X:%02X:%02X:%02X",
- i, j, 3, 4, 5, 6);
+ ap.mac_address = base::StringPrintf("%02X:%02X:%02X:%02X:%02X:%02X",
+ i, j, 3, 4, 5, 6);
ap.signal_strength = j;
ap.signal_to_noise = i;
ret.push_back(ap);
« no previous file with comments | « chrome/browser/chromeos/version_loader.cc ('k') | chrome/browser/google/google_update.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698