| Index: chrome/browser/ui/webui/options/website_settings_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/website_settings_handler.cc b/chrome/browser/ui/webui/options/website_settings_handler.cc
|
| index 8eca40c1451144c69a13e1109de3e4bbae0a5de8..681f405ea4a2987d96c04358cb5f3218c860449b 100644
|
| --- a/chrome/browser/ui/webui/options/website_settings_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/website_settings_handler.cc
|
| @@ -8,6 +8,7 @@
|
| #include "chrome/browser/content_settings/host_content_settings_map.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "content/public/browser/web_ui.h"
|
| +#include "extensions/common/constants.h"
|
| #include "grit/generated_resources.h"
|
| #include "ui/base/l10n/time_format.h"
|
| #include "ui/base/text/bytes_formatting.h"
|
| @@ -137,7 +138,8 @@ void WebsiteSettingsHandler::UpdateOrigins() {
|
| continue;
|
| }
|
|
|
| - std::string origin = it->primary_pattern.ToString();
|
| + std::string origin =
|
| + it->primary_pattern.ToString(extensions::kExtensionScheme);
|
|
|
| // Mediastream isn't set unless both mic and camera are set to the same.
|
| if (last_setting == CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC) {
|
|
|