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

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

Issue 1857983002: Add download_file_types.proto with ascii->binary conversion, as a resource. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved/rewrote proto comments to README.md Created 4 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 # Placeholder for list of file extensions that the download manager
6 # knows about.
7 # TODO(nparker): Populate this with full list..
8 version_id: 1
9 light_ping_probability: 0.0
10 file_type {
11 extension: "exe"
12 uma_value: 777
13 is_archive: false
14 platform_settings {
15 platform: ALL
16 danger_level: ALLOW_ON_USER_GESTURE
17 auto_open_hint: DISALLOW_AUTO_OPEN
18 ping_setting: SEND_FULL_PING
19 }
20 }
21 file_type {
22 extension: "zip"
23 uma_value: 888
24 is_archive: true
25 platform_settings {
26 platform: ALL
27 danger_level: NOT_DANGEROUS
28 auto_open_hint: ALLOW_AUTO_OPEN
29 ping_setting: SEND_FULL_PING # TODO: what does this mean w/ zip?
30 }
31 }
32 # file_type {...}
33 # file_type {...}
34 # file_type {...}
35 default_file_type {
36 uma_value: 19
37 is_archive: false
38 platform_settings {
39 platform: ALL
40 danger_level: ALLOW_ON_USER_GESTURE
41 auto_open_hint: DISALLOW_AUTO_OPEN
42 ping_setting: TREAT_AS_UNKNOWN
43 }
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698