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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/public/common/web_preferences.mojom
diff --git a/content/public/common/web_preferences.mojom b/content/public/common/web_preferences.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..72c583d5b4f1a03a7801a4bbe9b773bd9fcd671e
--- /dev/null
+++ b/content/public/common/web_preferences.mojom
@@ -0,0 +1,14 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+module content.mojom;
+
+// Cache options for V8. See V8CacheOptions.h for information on the options.
+enum V8CacheOptions {
+ 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.
+ V8_CACHE_OPTIONS_NONE,
+ V8_CACHE_OPTIONS_PARSE,
+ V8_CACHE_OPTIONS_CODE,
+ V8_CACHE_OPTIONS_LAST = V8_CACHE_OPTIONS_CODE
+};

Powered by Google App Engine
This is Rietveld 408576698