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 1b1f8e7b500222f2f8e4bd54a62901f4039e353f..8f789a9fda8a0a484eba13fc20971c2132b14849 100644 |
--- a/chrome/browser/tab_contents/render_view_context_menu.cc |
+++ b/chrome/browser/tab_contents/render_view_context_menu.cc |
@@ -273,7 +273,7 @@ void RenderViewContextMenu::Cancel() { |
PlatformCancel(); |
} |
-static bool ExtensionPatternMatch(const URLPatternSet& patterns, |
+static bool ExtensionPatternMatch(const extensions::URLPatternSet& patterns, |
const GURL& url) { |
// No patterns means no restriction, so that implicitly matches. |
if (patterns.is_empty()) |
@@ -285,7 +285,7 @@ static bool ExtensionPatternMatch(const URLPatternSet& patterns, |
bool RenderViewContextMenu::ExtensionContextAndPatternMatch( |
const content::ContextMenuParams& params, |
MenuItem::ContextList contexts, |
- const URLPatternSet& target_url_patterns) { |
+ const extensions::URLPatternSet& target_url_patterns) { |
bool has_link = !params.link_url.is_empty(); |
bool has_selection = !params.selection_text.empty(); |
bool in_frame = !params.frame_url.is_empty(); |