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

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: Simplify the proto spec to make .asciipb easier to read 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_types {
11 extension: "exe"
12 uma_value: 777
13 platform_settings {
14 danger_level: ALLOW_ON_USER_GESTURE
15 auto_open_hint: DISALLOW_AUTO_OPEN
16 ping_setting: FULL_PING
17 }
18 }
19 file_types {
20 extension: "zip"
21 uma_value: 888
22 is_archive: true
23 platform_settings {
24 danger_level: NOT_DANGEROUS
25 auto_open_hint: ALLOW_AUTO_OPEN
26 ping_setting: SAMPLED_PING
27 }
28 }
29 # file_types {...}
30 # file_types {...}
31 # file_types {...}
32 default_file_type {
33 uma_value: 19
34 platform_settings {
35 danger_level: ALLOW_ON_USER_GESTURE
36 auto_open_hint: DISALLOW_AUTO_OPEN
37 ping_setting: SAMPLED_PING
38 }
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698