Index: content/browser/web_contents/web_contents_impl_unittest.cc |
diff --git a/content/browser/web_contents/web_contents_impl_unittest.cc b/content/browser/web_contents/web_contents_impl_unittest.cc |
index 965da64f146b5b8edb762f60b46a1add69e11126..f58cce9755d67b55b733dfe51f880eae562a13c5 100644 |
--- a/content/browser/web_contents/web_contents_impl_unittest.cc |
+++ b/content/browser/web_contents/web_contents_impl_unittest.cc |
@@ -50,6 +50,7 @@ |
#include "net/test/cert_test_util.h" |
#include "testing/gtest/include/gtest/gtest.h" |
#include "third_party/skia/include/core/SkColor.h" |
+#include "url/url_constants.h" |
namespace content { |
namespace { |
@@ -487,7 +488,7 @@ TEST_F(WebContentsImplTest, SimpleNavigation) { |
TEST_F(WebContentsImplTest, NavigateToExcessivelyLongURL) { |
// Construct a URL that's kMaxURLChars + 1 long of all 'a's. |
const GURL url(std::string("http://example.org/").append( |
- kMaxURLChars + 1, 'a')); |
+ url::kMaxURLChars + 1, 'a')); |
controller().LoadURL( |
url, Referrer(), ui::PAGE_TRANSITION_GENERATED, std::string()); |