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

Unified Diff: content/browser/geolocation/network_location_provider_unittest.cc

Issue 7016011: iwyu: Include stringprintf.h where appropriate, part 3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win fix. Created 9 years, 7 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/tools/convert_dict/convert_dict_unittest.cc ('k') | courgette/adjustment_method.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/geolocation/network_location_provider_unittest.cc
diff --git a/content/browser/geolocation/network_location_provider_unittest.cc b/content/browser/geolocation/network_location_provider_unittest.cc
index 6fa0546167ba3556c7aa529d2db5ac83c0b1f63f..a4983e0905d05fb5486ac87e1fd1aed4791b0d1d 100644
--- a/content/browser/geolocation/network_location_provider_unittest.cc
+++ b/content/browser/geolocation/network_location_provider_unittest.cc
@@ -4,6 +4,7 @@
#include "base/json/json_reader.h"
#include "base/memory/scoped_ptr.h"
+#include "base/stringprintf.h"
#include "base/utf_string_conversions.h"
#include "base/values.h"
#include "chrome/common/net/test_url_fetcher_factory.h"
@@ -172,7 +173,8 @@ class GeolocationNetworkProviderTest : public testing::Test {
WifiData data;
for (int i = 0; i < ap_count; ++i) {
AccessPointData ap;
- ap.mac_address = ASCIIToUTF16(StringPrintf("%02d-34-56-78-54-32", i));
+ ap.mac_address =
+ ASCIIToUTF16(base::StringPrintf("%02d-34-56-78-54-32", i));
ap.radio_signal_strength = i;
ap.channel = IndexToChannal(i);
ap.signal_to_noise = i + 42;
@@ -189,7 +191,7 @@ class GeolocationNetworkProviderTest : public testing::Test {
for (int i = 0; i < router_count; ++i) {
RouterData router;
router.mac_address =
- ASCIIToUTF16(StringPrintf("%02d-34-56-78-54-32", i));
+ ASCIIToUTF16(base::StringPrintf("%02d-34-56-78-54-32", i));
data.router_data.insert(router);
}
return data;
« no previous file with comments | « chrome/tools/convert_dict/convert_dict_unittest.cc ('k') | courgette/adjustment_method.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698