| Index: chrome/browser/tab_contents/render_view_context_menu.cc
|
| diff --git a/chrome/browser/tab_contents/render_view_context_menu.cc b/chrome/browser/tab_contents/render_view_context_menu.cc
|
| index 40cc05402f838254a6252aeb5de82e0851a78c3c..ac1fb8d7d919bd8d7415763d0f56c981189328fe 100644
|
| --- a/chrome/browser/tab_contents/render_view_context_menu.cc
|
| +++ b/chrome/browser/tab_contents/render_view_context_menu.cc
|
| @@ -309,7 +309,7 @@ bool RenderViewContextMenu::IsItemCommandEnabled(int id) const {
|
| return true;
|
|
|
| case IDS_CONTENT_CONTEXT_FULLSCREEN:
|
| - // TODO(ajwong): Enable fullsceren after we actually implement this.
|
| + // TODO(ajwong): Enable fullscreen after we actually implement this.
|
| return false;
|
|
|
| // Media control commands should all be disabled if the player is in an
|
| @@ -718,8 +718,8 @@ bool RenderViewContextMenu::IsDevCommandEnabled(int id) const {
|
| // Don't inspect about:network, about:memory, etc.
|
| // However, we do want to inspect about:blank, which is often
|
| // used by ordinary web pages.
|
| - if (active_entry->display_url().SchemeIs(chrome::kAboutScheme) &&
|
| - !LowerCaseEqualsASCII(active_entry->display_url().path(), "blank"))
|
| + if (active_entry->virtual_url().SchemeIs(chrome::kAboutScheme) &&
|
| + !LowerCaseEqualsASCII(active_entry->virtual_url().path(), "blank"))
|
| return false;
|
|
|
| // Don't enable the web inspector if JavaScript is disabled
|
|
|