| Index: content/browser/frame_host/navigation_controller_impl.cc
|
| diff --git a/content/browser/frame_host/navigation_controller_impl.cc b/content/browser/frame_host/navigation_controller_impl.cc
|
| index 6610cb1202c04ab2360021ba4a1df4f4aba3f4ea..6ac51db0406185f26987617b799f931f34c580f0 100644
|
| --- a/content/browser/frame_host/navigation_controller_impl.cc
|
| +++ b/content/browser/frame_host/navigation_controller_impl.cc
|
| @@ -25,6 +25,7 @@
|
| #include "content/browser/site_instance_impl.h"
|
| #include "content/common/frame_messages.h"
|
| #include "content/common/view_messages.h"
|
| +#include "content/public/browser/bad_message.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/content_browser_client.h"
|
| #include "content/public/browser/invalidate_type.h"
|
| @@ -134,7 +135,7 @@ bool AreURLsInPageNavigation(const GURL& existing_url,
|
| (prefs.allow_universal_access_from_file_urls &&
|
| existing_url.SchemeIs(url::kFileScheme));
|
| if (!is_same_origin && renderer_says_in_page)
|
| - rfh->GetProcess()->ReceivedBadMessage();
|
| + rfh->GetProcess()->ReceivedBadMessage(BadMessage::NC_IN_PAGE_NAVIGATION);
|
| return is_same_origin && renderer_says_in_page;
|
| }
|
|
|
|
|