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

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

Issue 432273004: Implement Blink-side changes to enable V8 code caching. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: V8CacheOptions enum (instead of string) Created 6 years, 4 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: Source/bindings/core/v8/V8CacheOptionsType.h
diff --git a/Source/bindings/tests/idls/TestInterfaceDocument.idl b/Source/bindings/core/v8/V8CacheOptionsType.h
similarity index 88%
copy from Source/bindings/tests/idls/TestInterfaceDocument.idl
copy to Source/bindings/core/v8/V8CacheOptionsType.h
index 2a687e871a44bace871a2d7b65243bbbdedc7339..be877232f3ae80df03219d67083fc82c86fa38db 100644
--- a/Source/bindings/tests/idls/TestInterfaceDocument.idl
+++ b/Source/bindings/core/v8/V8CacheOptionsType.h
@@ -28,5 +28,17 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-interface TestInterfaceDocument : Document {
+#ifndef V8CacheOptionsType_h
+#define V8CacheOptionsType_h
+
+namespace blink {
+
+enum V8CacheOptionsType {
jochen (gone - plz use gerrit) 2014/08/05 16:10:01 i'd name this V8CacheOptions (and the values V8Cac
vogelheim 2014/08/05 17:02:52 Done.
+ V8CacheOff,
+ V8CacheParse,
+ V8CacheCode
};
+
+} // namespace blink
+
+#endif // V8CacheOptionsType_h

Powered by Google App Engine
This is Rietveld 408576698