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

Unified Diff: chrome/browser/ui/content_settings/content_setting_image_model.cc

Issue 19022004: Minimum possible change to avoid "mic" icon in omnibox for site permissions. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/content_settings/content_setting_image_model.cc
===================================================================
--- chrome/browser/ui/content_settings/content_setting_image_model.cc (revision 210604)
+++ chrome/browser/ui/content_settings/content_setting_image_model.cc (working copy)
@@ -231,7 +231,7 @@
// icon is displayed in the omnibox.
return;
case TabSpecificContentSettings::MICROPHONE_ACCESSED:
- set_icon(IDR_ALLOWED_MICROPHONE);
+ set_icon(IDR_ASK_MEDIA);
set_tooltip(l10n_util::GetStringUTF8(IDS_MICROPHONE_ACCESSED));
break;
case TabSpecificContentSettings::CAMERA_ACCESSED:
@@ -243,7 +243,7 @@
set_tooltip(l10n_util::GetStringUTF8(IDS_MICROPHONE_CAMERA_ALLOWED));
break;
case TabSpecificContentSettings::MICROPHONE_BLOCKED:
- set_icon(IDR_BLOCKED_MICROPHONE);
+ set_icon(IDR_BLOCKED_MEDIA);
set_tooltip(l10n_util::GetStringUTF8(IDS_MICROPHONE_BLOCKED));
break;
case TabSpecificContentSettings::CAMERA_BLOCKED:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698