| 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 186b066fec600229c5c81d546351d14b504d5c1a..200f5283dd3dc86b87b60625e672fceb3336dfee 100644
|
| --- a/content/browser/web_contents/web_contents_impl_unittest.cc
|
| +++ b/content/browser/web_contents/web_contents_impl_unittest.cc
|
| @@ -32,7 +32,6 @@
|
| #include "content/public/common/content_constants.h"
|
| #include "content/public/common/content_switches.h"
|
| #include "content/public/common/url_constants.h"
|
| -#include "content/public/common/url_utils.h"
|
| #include "content/public/test/mock_render_process_host.h"
|
| #include "content/public/test/test_utils.h"
|
| #include "content/test/test_content_browser_client.h"
|
| @@ -469,7 +468,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(
|
| - GetMaxURLChars() + 1, 'a'));
|
| + kMaxURLChars + 1, 'a'));
|
|
|
| controller().LoadURL(
|
| url, Referrer(), ui::PAGE_TRANSITION_GENERATED, std::string());
|
|
|