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

Side by Side Diff: chrome/browser/content_settings/tab_specific_content_settings.cc

Issue 1148773005: Add a RAPPOR metric to track where users click to allow mixed scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Forward-declare GURL. Created 5 years, 6 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 unified diff | Download patch
OLDNEW
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/content_settings/tab_specific_content_settings.h" 5 #include "chrome/browser/content_settings/tab_specific_content_settings.h"
6 6
7 #include <list> 7 #include <list>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/lazy_instance.h" 10 #include "base/lazy_instance.h"
11 #include "base/prefs/pref_service.h" 11 #include "base/prefs/pref_service.h"
12 #include "base/strings/string_util.h" 12 #include "base/strings/string_util.h"
13 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
14 #include "chrome/browser/browser_process.h"
15 #include "chrome/browser/browsing_data/browsing_data_appcache_helper.h" 14 #include "chrome/browser/browsing_data/browsing_data_appcache_helper.h"
16 #include "chrome/browser/browsing_data/browsing_data_cookie_helper.h" 15 #include "chrome/browser/browsing_data/browsing_data_cookie_helper.h"
17 #include "chrome/browser/browsing_data/browsing_data_database_helper.h" 16 #include "chrome/browser/browsing_data/browsing_data_database_helper.h"
18 #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h" 17 #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h"
19 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" 18 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h"
20 #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h" 19 #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h"
21 #include "chrome/browser/browsing_data/cookies_tree_model.h" 20 #include "chrome/browser/browsing_data/cookies_tree_model.h"
22 #include "chrome/browser/chrome_notification_types.h" 21 #include "chrome/browser/chrome_notification_types.h"
23 #include "chrome/browser/content_settings/chrome_content_settings_utils.h" 22 #include "chrome/browser/content_settings/chrome_content_settings_utils.h"
24 #include "chrome/browser/media/media_capture_devices_dispatcher.h" 23 #include "chrome/browser/media/media_capture_devices_dispatcher.h"
25 #include "chrome/browser/media/media_stream_capture_indicator.h" 24 #include "chrome/browser/media/media_stream_capture_indicator.h"
26 #include "chrome/browser/profiles/profile.h" 25 #include "chrome/browser/profiles/profile.h"
27 #include "chrome/common/chrome_switches.h" 26 #include "chrome/common/chrome_switches.h"
28 #include "chrome/common/pref_names.h" 27 #include "chrome/common/pref_names.h"
29 #include "chrome/common/render_messages.h" 28 #include "chrome/common/render_messages.h"
30 #include "components/content_settings/content/common/content_settings_messages.h " 29 #include "components/content_settings/content/common/content_settings_messages.h "
31 #include "components/content_settings/core/browser/content_settings_details.h" 30 #include "components/content_settings/core/browser/content_settings_details.h"
32 #include "components/content_settings/core/browser/content_settings_utils.h" 31 #include "components/content_settings/core/browser/content_settings_utils.h"
33 #include "components/content_settings/core/browser/host_content_settings_map.h" 32 #include "components/content_settings/core/browser/host_content_settings_map.h"
34 #include "components/rappor/rappor_service.h"
35 #include "content/public/browser/browser_thread.h" 33 #include "content/public/browser/browser_thread.h"
36 #include "content/public/browser/navigation_controller.h" 34 #include "content/public/browser/navigation_controller.h"
37 #include "content/public/browser/navigation_details.h" 35 #include "content/public/browser/navigation_details.h"
38 #include "content/public/browser/navigation_entry.h" 36 #include "content/public/browser/navigation_entry.h"
39 #include "content/public/browser/notification_registrar.h" 37 #include "content/public/browser/notification_registrar.h"
40 #include "content/public/browser/notification_service.h" 38 #include "content/public/browser/notification_service.h"
41 #include "content/public/browser/render_frame_host.h" 39 #include "content/public/browser/render_frame_host.h"
42 #include "content/public/browser/render_view_host.h" 40 #include "content/public/browser/render_view_host.h"
43 #include "content/public/browser/web_contents.h" 41 #include "content/public/browser/web_contents.h"
44 #include "content/public/browser/web_contents_delegate.h" 42 #include "content/public/browser/web_contents_delegate.h"
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 content_blocked_[type] = true; 327 content_blocked_[type] = true;
330 // TODO: it would be nice to have a way of mocking this in tests. 328 // TODO: it would be nice to have a way of mocking this in tests.
331 content::NotificationService::current()->Notify( 329 content::NotificationService::current()->Notify(
332 chrome::NOTIFICATION_WEB_CONTENT_SETTINGS_CHANGED, 330 chrome::NOTIFICATION_WEB_CONTENT_SETTINGS_CHANGED,
333 content::Source<WebContents>(web_contents()), 331 content::Source<WebContents>(web_contents()),
334 content::NotificationService::NoDetails()); 332 content::NotificationService::NoDetails());
335 333
336 if (type == CONTENT_SETTINGS_TYPE_MIXEDSCRIPT) { 334 if (type == CONTENT_SETTINGS_TYPE_MIXEDSCRIPT) {
337 content_settings::RecordMixedScriptAction( 335 content_settings::RecordMixedScriptAction(
338 content_settings::MIXED_SCRIPT_ACTION_DISPLAYED_SHIELD); 336 content_settings::MIXED_SCRIPT_ACTION_DISPLAYED_SHIELD);
339 337 content_settings::RecordMixedScriptActionWithRAPPOR(
340 rappor::RapporService* rappor_service = 338 content_settings::MIXED_SCRIPT_ACTION_DISPLAYED_SHIELD,
341 g_browser_process->rappor_service(); 339 GURL(base::UTF16ToUTF8(details)));
342 if (rappor_service) {
343 rappor_service->RecordSample(
344 "ContentSettings.MixedScript.DisplayedShield",
345 rappor::ETLD_PLUS_ONE_RAPPOR_TYPE,
346 net::registry_controlled_domains::GetDomainAndRegistry(
347 base::UTF16ToUTF8(details),
348 net::registry_controlled_domains::INCLUDE_PRIVATE_REGISTRIES));
349 }
350 } 340 }
351 } 341 }
352 } 342 }
353 343
354 void TabSpecificContentSettings::OnContentAllowed(ContentSettingsType type) { 344 void TabSpecificContentSettings::OnContentAllowed(ContentSettingsType type) {
355 DCHECK(type != CONTENT_SETTINGS_TYPE_GEOLOCATION) 345 DCHECK(type != CONTENT_SETTINGS_TYPE_GEOLOCATION)
356 << "Geolocation settings handled by OnGeolocationPermissionSet"; 346 << "Geolocation settings handled by OnGeolocationPermissionSet";
357 DCHECK(type != CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC && 347 DCHECK(type != CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC &&
358 type != CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA) 348 type != CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA)
359 << "Media stream settings handled by OnMediaStreamPermissionSet"; 349 << "Media stream settings handled by OnMediaStreamPermissionSet";
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
802 792
803 void TabSpecificContentSettings::GeolocationDidNavigate( 793 void TabSpecificContentSettings::GeolocationDidNavigate(
804 const content::LoadCommittedDetails& details) { 794 const content::LoadCommittedDetails& details) {
805 geolocation_usages_state_.DidNavigate(GetCommittedDetails(details)); 795 geolocation_usages_state_.DidNavigate(GetCommittedDetails(details));
806 } 796 }
807 797
808 void TabSpecificContentSettings::MidiDidNavigate( 798 void TabSpecificContentSettings::MidiDidNavigate(
809 const content::LoadCommittedDetails& details) { 799 const content::LoadCommittedDetails& details) {
810 midi_usages_state_.DidNavigate(GetCommittedDetails(details)); 800 midi_usages_state_.DidNavigate(GetCommittedDetails(details));
811 } 801 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698