| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/ui/webui/settings/site_settings_handler.h" | 5 #include "chrome/browser/ui/webui/settings/site_settings_handler.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 CONTENT_SETTINGS_TYPE_PLUGINS, | 530 CONTENT_SETTINGS_TYPE_PLUGINS, |
| 531 CONTENT_SETTINGS_TYPE_POPUPS, | 531 CONTENT_SETTINGS_TYPE_POPUPS, |
| 532 CONTENT_SETTINGS_TYPE_GEOLOCATION, | 532 CONTENT_SETTINGS_TYPE_GEOLOCATION, |
| 533 CONTENT_SETTINGS_TYPE_NOTIFICATIONS, | 533 CONTENT_SETTINGS_TYPE_NOTIFICATIONS, |
| 534 CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC, | 534 CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC, |
| 535 CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA, | 535 CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA, |
| 536 CONTENT_SETTINGS_TYPE_PROTOCOL_HANDLERS, | 536 CONTENT_SETTINGS_TYPE_PROTOCOL_HANDLERS, |
| 537 CONTENT_SETTINGS_TYPE_AUTOMATIC_DOWNLOADS, | 537 CONTENT_SETTINGS_TYPE_AUTOMATIC_DOWNLOADS, |
| 538 CONTENT_SETTINGS_TYPE_BACKGROUND_SYNC, | 538 CONTENT_SETTINGS_TYPE_BACKGROUND_SYNC, |
| 539 CONTENT_SETTINGS_TYPE_USB_CHOOSER_DATA, | 539 CONTENT_SETTINGS_TYPE_USB_CHOOSER_DATA, |
| 540 CONTENT_SETTINGS_TYPE_PROMPT_NO_DECISION_COUNT, | |
| 541 }; | 540 }; |
| 542 | 541 |
| 543 // Create a list to be consistent with existing API, we are expecting a single | 542 // Create a list to be consistent with existing API, we are expecting a single |
| 544 // element (or none). | 543 // element (or none). |
| 545 std::unique_ptr<base::ListValue> exceptions(new base::ListValue); | 544 std::unique_ptr<base::ListValue> exceptions(new base::ListValue); |
| 546 for (size_t type = 0; type < arraysize(kSettingsDetailTypes); ++type) { | 545 for (size_t type = 0; type < arraysize(kSettingsDetailTypes); ++type) { |
| 547 ContentSettingsType content_type = kSettingsDetailTypes[type]; | 546 ContentSettingsType content_type = kSettingsDetailTypes[type]; |
| 548 | 547 |
| 549 HostContentSettingsMap* map = | 548 HostContentSettingsMap* map = |
| 550 HostContentSettingsMapFactory::GetForProfile(profile_); | 549 HostContentSettingsMapFactory::GetForProfile(profile_); |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 origin = content::kUnreachableWebDataURL; | 707 origin = content::kUnreachableWebDataURL; |
| 709 } | 708 } |
| 710 | 709 |
| 711 content::HostZoomMap* host_zoom_map; | 710 content::HostZoomMap* host_zoom_map; |
| 712 host_zoom_map = content::HostZoomMap::GetDefaultForBrowserContext(profile_); | 711 host_zoom_map = content::HostZoomMap::GetDefaultForBrowserContext(profile_); |
| 713 double default_level = host_zoom_map->GetDefaultZoomLevel(); | 712 double default_level = host_zoom_map->GetDefaultZoomLevel(); |
| 714 host_zoom_map->SetZoomLevelForHost(origin, default_level); | 713 host_zoom_map->SetZoomLevelForHost(origin, default_level); |
| 715 } | 714 } |
| 716 | 715 |
| 717 } // namespace settings | 716 } // namespace settings |
| OLD | NEW |