| 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 bc12f20b8fbc5e9ba32dcac04e6f9a818ba600c3..e95c85363ff3e073e3d6f7cd00e434156e73086d 100644
 | 
| --- a/content/browser/web_contents/web_contents_impl_unittest.cc
 | 
| +++ b/content/browser/web_contents/web_contents_impl_unittest.cc
 | 
| @@ -51,6 +51,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 {
 | 
| @@ -488,7 +489,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());
 | 
| 
 |