| Index: content/renderer/render_frame_impl.cc
|
| diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
|
| index f7f77fad21c03aee84e63185e7b6b41f81886288..6674864d7bb9c9098843e69f4f14a15ef411be1d 100644
|
| --- a/content/renderer/render_frame_impl.cc
|
| +++ b/content/renderer/render_frame_impl.cc
|
| @@ -91,6 +91,7 @@
|
| #include "third_party/WebKit/public/web/WebSecurityPolicy.h"
|
| #include "third_party/WebKit/public/web/WebUserGestureIndicator.h"
|
| #include "third_party/WebKit/public/web/WebView.h"
|
| +#include "url/url_constants.h"
|
| #include "webkit/child/weburlresponse_extradata_impl.h"
|
|
|
| #if defined(ENABLE_PLUGINS)
|
| @@ -275,7 +276,7 @@ static bool IsNonLocalTopLevelNavigation(const GURL& url,
|
| // 2. The origin of the url and the opener is the same in which case the
|
| // opener relationship is maintained.
|
| // 3. Reloads/form submits/back forward navigations
|
| - if (!url.SchemeIs(kHttpScheme) && !url.SchemeIs(kHttpsScheme))
|
| + if (!url.SchemeIs(url::kHttpScheme) && !url.SchemeIs(url::kHttpsScheme))
|
| return false;
|
|
|
| if (type != blink::WebNavigationTypeReload &&
|
|
|