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

Unified Diff: Source/bindings/core/v8/V8CacheOptions.h

Issue 1195763002: Cleanup: Remove experimental V8 cache strategies that we discarded. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add #if-guard for multi-CL change. Created 5 years, 6 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
« no previous file with comments | « Source/bindings/core/v8/ScriptStreamer.cpp ('k') | Source/bindings/core/v8/V8ScriptRunner.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8CacheOptions.h
diff --git a/Source/bindings/core/v8/V8CacheOptions.h b/Source/bindings/core/v8/V8CacheOptions.h
index 7f043bb0a459db12ae8da02a74c5655584be66b3..3f3e3e0272f86346418b02c4e1b3118c072dca74 100644
--- a/Source/bindings/core/v8/V8CacheOptions.h
+++ b/Source/bindings/core/v8/V8CacheOptions.h
@@ -35,17 +35,9 @@ namespace blink {
enum V8CacheOptions {
V8CacheOptionsDefault, // Use whatever the current default is.
+ V8CacheOptionsNone, // V8 caching turned off.
V8CacheOptionsParse, // Use parser caching.
V8CacheOptionsCode, // Use code caching.
- V8CacheOptionsCodeCompressed, // Use code caching and compress the code.
- V8CacheOptionsNone, // V8 caching turned off.
- V8CacheOptionsParseMemory, // Use parser in-memory caching (no disk).
- V8CacheOptionsHeuristics, // Mixed strategy: Cache code if it's a likely win.
- V8CacheOptionsHeuristicsMobile, // As above, but tuned for mobile.
- V8CacheOptionsHeuristicsDefault, // Cache code or default.
- V8CacheOptionsHeuristicsDefaultMobile, // As above, but tuned for mobile.
- V8CacheOptionsRecent, // Cache recently compiled code.
- V8CacheOptionsRecentSmall // Cache small recently compiled code.
};
} // namespace blink
« no previous file with comments | « Source/bindings/core/v8/ScriptStreamer.cpp ('k') | Source/bindings/core/v8/V8ScriptRunner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698