| Index: src/bootstrapper.h
|
| diff --git a/src/bootstrapper.h b/src/bootstrapper.h
|
| index 44f0f1b2a5582adfcae5706a87bfaa5af62b93c1..7d2c14fd22037c3936b2cf13caf43e3b3bfd51f5 100644
|
| --- a/src/bootstrapper.h
|
| +++ b/src/bootstrapper.h
|
| @@ -61,7 +61,7 @@ class SourceCodeCache final BASE_EMBEDDED {
|
| DISALLOW_COPY_AND_ASSIGN(SourceCodeCache);
|
| };
|
|
|
| -enum ContextType { FULL_CONTEXT, THIN_CONTEXT, DEBUG_CONTEXT };
|
| +enum GlobalContextType { FULL_CONTEXT, THIN_CONTEXT, DEBUG_CONTEXT };
|
|
|
| // The Boostrapper is the public interface for creating a JavaScript global
|
| // context.
|
| @@ -80,7 +80,7 @@ class Bootstrapper final {
|
| MaybeHandle<JSGlobalProxy> maybe_global_proxy,
|
| v8::Local<v8::ObjectTemplate> global_object_template,
|
| v8::ExtensionConfiguration* extensions,
|
| - ContextType context_type = FULL_CONTEXT);
|
| + GlobalContextType context_type = FULL_CONTEXT);
|
|
|
| // Detach the environment from its outer global object.
|
| void DetachGlobal(Handle<Context> env);
|
|
|