OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/tab_contents/render_view_context_menu.h" | 5 #include "chrome/browser/tab_contents/render_view_context_menu.h" |
6 | 6 |
7 #include "base/prefs/pref_service.h" | 7 #include "base/prefs/pref_service.h" |
8 #include "chrome/app/chrome_command_ids.h" | 8 #include "chrome/app/chrome_command_ids.h" |
9 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" | 9 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" |
10 #include "chrome/browser/extensions/extension_prefs.h" | 10 #include "chrome/browser/extensions/extension_prefs.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 const URLPatternSet& patterns) { | 30 const URLPatternSet& patterns) { |
31 return RenderViewContextMenu::ExtensionContextAndPatternMatch(params, | 31 return RenderViewContextMenu::ExtensionContextAndPatternMatch(params, |
32 contexts, patterns); | 32 contexts, patterns); |
33 } | 33 } |
34 }; | 34 }; |
35 | 35 |
36 // Generates a ContextMenuParams that matches the specified contexts. | 36 // Generates a ContextMenuParams that matches the specified contexts. |
37 static content::ContextMenuParams CreateParams(int contexts) { | 37 static content::ContextMenuParams CreateParams(int contexts) { |
38 content::ContextMenuParams rv; | 38 content::ContextMenuParams rv; |
39 rv.is_editable = false; | 39 rv.is_editable = false; |
40 rv.media_type = WebKit::WebContextMenuData::MediaTypeNone; | 40 rv.media_type = blink::WebContextMenuData::MediaTypeNone; |
41 rv.page_url = GURL("http://test.page/"); | 41 rv.page_url = GURL("http://test.page/"); |
42 | 42 |
43 static const char16 selected_text[] = { 's', 'e', 'l', 0 }; | 43 static const char16 selected_text[] = { 's', 'e', 'l', 0 }; |
44 if (contexts & MenuItem::SELECTION) | 44 if (contexts & MenuItem::SELECTION) |
45 rv.selection_text = selected_text; | 45 rv.selection_text = selected_text; |
46 | 46 |
47 if (contexts & MenuItem::LINK) | 47 if (contexts & MenuItem::LINK) |
48 rv.link_url = GURL("http://test.link/"); | 48 rv.link_url = GURL("http://test.link/"); |
49 | 49 |
50 if (contexts & MenuItem::EDITABLE) | 50 if (contexts & MenuItem::EDITABLE) |
51 rv.is_editable = true; | 51 rv.is_editable = true; |
52 | 52 |
53 if (contexts & MenuItem::IMAGE) { | 53 if (contexts & MenuItem::IMAGE) { |
54 rv.src_url = GURL("http://test.image/"); | 54 rv.src_url = GURL("http://test.image/"); |
55 rv.media_type = WebKit::WebContextMenuData::MediaTypeImage; | 55 rv.media_type = blink::WebContextMenuData::MediaTypeImage; |
56 } | 56 } |
57 | 57 |
58 if (contexts & MenuItem::VIDEO) { | 58 if (contexts & MenuItem::VIDEO) { |
59 rv.src_url = GURL("http://test.video/"); | 59 rv.src_url = GURL("http://test.video/"); |
60 rv.media_type = WebKit::WebContextMenuData::MediaTypeVideo; | 60 rv.media_type = blink::WebContextMenuData::MediaTypeVideo; |
61 } | 61 } |
62 | 62 |
63 if (contexts & MenuItem::AUDIO) { | 63 if (contexts & MenuItem::AUDIO) { |
64 rv.src_url = GURL("http://test.audio/"); | 64 rv.src_url = GURL("http://test.audio/"); |
65 rv.media_type = WebKit::WebContextMenuData::MediaTypeAudio; | 65 rv.media_type = blink::WebContextMenuData::MediaTypeAudio; |
66 } | 66 } |
67 | 67 |
68 if (contexts & MenuItem::FRAME) | 68 if (contexts & MenuItem::FRAME) |
69 rv.frame_url = GURL("http://test.frame/"); | 69 rv.frame_url = GURL("http://test.frame/"); |
70 | 70 |
71 return rv; | 71 return rv; |
72 } | 72 } |
73 | 73 |
74 // Generates a URLPatternSet with a single pattern | 74 // Generates a URLPatternSet with a single pattern |
75 static URLPatternSet CreatePatternSet(const std::string& pattern) { | 75 static URLPatternSet CreatePatternSet(const std::string& pattern) { |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 menu->IsCommandIdEnabled(IDC_CONTENT_CONTEXT_OPENLINKOFFTHERECORD)); | 282 menu->IsCommandIdEnabled(IDC_CONTENT_CONTEXT_OPENLINKOFFTHERECORD)); |
283 | 283 |
284 // Disable Incognito mode. | 284 // Disable Incognito mode. |
285 IncognitoModePrefs::SetAvailability(profile()->GetPrefs(), | 285 IncognitoModePrefs::SetAvailability(profile()->GetPrefs(), |
286 IncognitoModePrefs::DISABLED); | 286 IncognitoModePrefs::DISABLED); |
287 menu.reset(CreateContextMenu()); | 287 menu.reset(CreateContextMenu()); |
288 ASSERT_TRUE(menu->IsItemPresent(IDC_CONTENT_CONTEXT_OPENLINKOFFTHERECORD)); | 288 ASSERT_TRUE(menu->IsItemPresent(IDC_CONTENT_CONTEXT_OPENLINKOFFTHERECORD)); |
289 EXPECT_FALSE( | 289 EXPECT_FALSE( |
290 menu->IsCommandIdEnabled(IDC_CONTENT_CONTEXT_OPENLINKOFFTHERECORD)); | 290 menu->IsCommandIdEnabled(IDC_CONTENT_CONTEXT_OPENLINKOFFTHERECORD)); |
291 } | 291 } |
OLD | NEW |