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

Side by Side Diff: content/public/common/web_preferences.mojom

Issue 2227593002: ServiceWorker: Implement StartWorker by using mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added argument check and updated comment and BUILD.gn Created 4 years, 3 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 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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698