Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1237)

Unified Diff: chrome/browser/extensions/extension_menu_manager.cc

Issue 3017056: Update the names of some parameters passed to contextMenu onclick handlers.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_menu_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_menu_manager.cc
===================================================================
--- chrome/browser/extensions/extension_menu_manager.cc (revision 54936)
+++ chrome/browser/extensions/extension_menu_manager.cc (working copy)
@@ -393,20 +393,20 @@
switch (params.media_type) {
case WebKit::WebContextMenuData::MediaTypeImage:
- properties->SetString(L"mediaType", "IMAGE");
+ properties->SetString(L"mediaType", "image");
break;
case WebKit::WebContextMenuData::MediaTypeVideo:
- properties->SetString(L"mediaType", "VIDEO");
+ properties->SetString(L"mediaType", "video");
break;
case WebKit::WebContextMenuData::MediaTypeAudio:
- properties->SetString(L"mediaType", "AUDIO");
+ properties->SetString(L"mediaType", "audio");
break;
default: {} // Do nothing.
}
AddURLProperty(properties, L"linkUrl", params.unfiltered_link_url);
AddURLProperty(properties, L"srcUrl", params.src_url);
- AddURLProperty(properties, L"mainFrameUrl", params.page_url);
+ AddURLProperty(properties, L"pageUrl", params.page_url);
AddURLProperty(properties, L"frameUrl", params.frame_url);
if (params.selection_text.length() > 0)
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_menu_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698