OLD | NEW |
---|---|
(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 module content.mojom; | |
6 | |
7 // Cache options for V8. See V8CacheOptions.h for information on the options. | |
8 enum V8CacheOptions { | |
9 V8_CACHE_OPTIONS_DEFAULT, | |
dcheng
2016/09/07 07:51:09
mojo enums are enum classes by default, so you can
shimazu
2016/09/12 06:28:19
Acknowledged.
| |
10 V8_CACHE_OPTIONS_NONE, | |
11 V8_CACHE_OPTIONS_PARSE, | |
12 V8_CACHE_OPTIONS_CODE, | |
13 V8_CACHE_OPTIONS_LAST = V8_CACHE_OPTIONS_CODE | |
14 }; | |
OLD | NEW |