diff options
author | Mike Frysinger <vapier@chromium.org> | 2012-04-06 15:23:18 -0400 |
---|---|---|
committer | Gerrit <chrome-bot@google.com> | 2012-04-11 08:56:24 -0700 |
commit | 8155d081dc729d407f8ff9e95b4ef91ae14281ce (patch) | |
tree | 2f964e6bf20f0fe0bd22779a8b7c8de977a097a8 /test_http_server.cc | |
parent | a8a3a878bf8cac959428af8a807e9b5ec4a9a302 (diff) |
pull in base/stringprintf.h explicitly
Newer libbase no longer implicitly includes the stringprintf.h header,
so building against it fails with missing StringPrintf definitions.
BUG=chromium-os:25872
TEST=`emerge-x86-alex update_engine` works with old & new libbase
Change-Id: Ia1ea842449c0382ee4c8e5abd3ddfb3012c3ff2f
Reviewed-on: https://gerrit.chromium.org/gerrit/19774
Commit-Ready: Mike Frysinger <vapier@chromium.org>
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Tested-by: Mike Frysinger <vapier@chromium.org>
Diffstat (limited to 'test_http_server.cc')
-rw-r--r-- | test_http_server.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test_http_server.cc b/test_http_server.cc index 6257e07a..08cf8e58 100644 --- a/test_http_server.cc +++ b/test_http_server.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium OS Authors. All rights reserved. +// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -28,6 +28,7 @@ #include <base/logging.h> #include <base/string_split.h> #include <base/string_util.h> +#include <base/stringprintf.h> #include "update_engine/http_common.h" #include "update_engine/http_fetcher_unittest.h" |