Chromium Code Reviews| Index: third_party/WebKit/Source/bindings/core/v8/V8CacheStrategiesForCacheStorage.h |
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8CacheStrategiesForCacheStorage.h b/third_party/WebKit/Source/bindings/core/v8/V8CacheStrategiesForCacheStorage.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4b9763fb72fe87dfa2f26f21e38bef8a4713c79b |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8CacheStrategiesForCacheStorage.h |
| @@ -0,0 +1,19 @@ |
| +// 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. |
| + |
| +#ifndef V8CacheStrategiesForCacheStorage_h |
| +#define V8CacheStrategiesForCacheStorage_h |
| + |
| +namespace blink { |
| + |
| +enum V8CacheStrategiesForCacheStorage { |
|
jochen (gone - plz use gerrit)
2016/04/27 13:21:04
what about making this an enum class?
horo
2016/04/30 05:30:41
Done.
|
| + V8CacheStrategiesForCacheStorageDefault, |
| + V8CacheStrategiesForCacheStorageNone, |
| + V8CacheStrategiesForCacheStorageNormal, |
| + V8CacheStrategiesForCacheStorageAggressive, |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // V8CacheStrategiesForCacheStorage_h |