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

Side by Side Diff: chrome/browser/resources/safe_browsing/download_file_types.asciipb

Issue 2778283003: Check apk and dex files on Chrome OS. (Closed)
Patch Set: Change CL descriptions. Created 3 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # See README.md before editing this file. 5 # See README.md before editing this file.
6 # Keep sorted by extension within logical groupings where possible. 6 # Keep sorted by extension within logical groupings where possible.
7 7
8 ## 8 ##
9 ## Top level settings 9 ## Top level settings
10 ## 10 ##
11 version_id: 8 11 version_id: 9
12 sampled_ping_probability: 0.01 12 sampled_ping_probability: 0.01
13 default_file_type { 13 default_file_type {
14 uma_value: 18 14 uma_value: 18
15 ping_setting: SAMPLED_PING 15 ping_setting: SAMPLED_PING
16 platform_settings { 16 platform_settings {
17 danger_level: NOT_DANGEROUS 17 danger_level: NOT_DANGEROUS
18 auto_open_hint: ALLOW_AUTO_OPEN 18 auto_open_hint: ALLOW_AUTO_OPEN
19 } 19 }
20 } 20 }
21 21
(...skipping 2610 matching lines...) Expand 10 before | Expand all | Expand 10 after
2632 platform: PLATFORM_WINDOWS 2632 platform: PLATFORM_WINDOWS
2633 danger_level: NOT_DANGEROUS 2633 danger_level: NOT_DANGEROUS
2634 auto_open_hint: ALLOW_AUTO_OPEN 2634 auto_open_hint: ALLOW_AUTO_OPEN
2635 } 2635 }
2636 } 2636 }
2637 2637
2638 ## 2638 ##
2639 ## Android-specific files 2639 ## Android-specific files
2640 ## 2640 ##
2641 # Android doesn't have real download-protection, but we can show a 2641 # Android doesn't have real download-protection, but we can show a
2642 # warning to provide a speed bump for dangerous file types. 2642 # warning to provide a speed bump for dangerous file types.
Nathan Parker 2017/03/29 20:28:37 Add a comment that some Chrome OS installations ca
2643 file_types { 2643 file_types {
2644 extension: "dex" 2644 extension: "dex"
2645 uma_value: 143 2645 uma_value: 143
2646 ping_setting: FULL_PING 2646 ping_setting: FULL_PING
2647 platform_settings { 2647 platform_settings {
2648 platform: PLATFORM_ANDROID 2648 platform: PLATFORM_ANDROID
2649 danger_level: ALLOW_ON_USER_GESTURE 2649 danger_level: ALLOW_ON_USER_GESTURE
2650 auto_open_hint: DISALLOW_AUTO_OPEN 2650 auto_open_hint: DISALLOW_AUTO_OPEN
2651 } 2651 }
2652 platform_settings {
2653 platform: PLATFORM_CHROME_OS
2654 danger_level: ALLOW_ON_USER_GESTURE
2655 auto_open_hint: DISALLOW_AUTO_OPEN
2656 }
2652 } 2657 }
2653 file_types { 2658 file_types {
2654 extension: "apk" 2659 extension: "apk"
2655 uma_value: 20 2660 uma_value: 20
2656 ping_setting: FULL_PING 2661 ping_setting: FULL_PING
2657 platform_settings { 2662 platform_settings {
2658 platform: PLATFORM_ANDROID 2663 platform: PLATFORM_ANDROID
2659 danger_level: ALLOW_ON_USER_GESTURE 2664 danger_level: ALLOW_ON_USER_GESTURE
2660 auto_open_hint: DISALLOW_AUTO_OPEN 2665 auto_open_hint: DISALLOW_AUTO_OPEN
2661 } 2666 }
2662 platform_settings { 2667 platform_settings {
2668 platform: PLATFORM_CHROME_OS
2669 danger_level: ALLOW_ON_USER_GESTURE
2670 auto_open_hint: DISALLOW_AUTO_OPEN
2671 }
2672 platform_settings {
2663 platform: PLATFORM_LINUX 2673 platform: PLATFORM_LINUX
2664 danger_level: ALLOW_ON_USER_GESTURE 2674 danger_level: ALLOW_ON_USER_GESTURE
2665 auto_open_hint: DISALLOW_AUTO_OPEN 2675 auto_open_hint: DISALLOW_AUTO_OPEN
2666 } 2676 }
2667 } 2677 }
OLDNEW
« 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