@@ -604,19 +604,19 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
604604 " Start the V8 heap profiler on start up, and write the heap profile "
605605 " to disk before exit. If --heap-prof-dir is not specified, write "
606606 " the profile to the current working directory." ,
607- &EnvironmentOptions::heap_prof);
607+ &EnvironmentOptions::heap_prof, kAllowedInEnvvar );
608608 AddOption (" --heap-prof-name" ,
609609 " specified file name of the V8 heap profile generated with "
610610 " --heap-prof" ,
611- &EnvironmentOptions::heap_prof_name);
611+ &EnvironmentOptions::heap_prof_name, kAllowedInEnvvar );
612612 AddOption (" --heap-prof-dir" ,
613613 " Directory where the V8 heap profiles generated by --heap-prof "
614614 " will be placed." ,
615- &EnvironmentOptions::heap_prof_dir);
615+ &EnvironmentOptions::heap_prof_dir, kAllowedInEnvvar );
616616 AddOption (" --heap-prof-interval" ,
617617 " specified sampling interval in bytes for the V8 heap "
618618 " profile generated with --heap-prof. (default: 512 * 1024)" ,
619- &EnvironmentOptions::heap_prof_interval);
619+ &EnvironmentOptions::heap_prof_interval, kAllowedInEnvvar );
620620#endif // HAVE_INSPECTOR
621621 AddOption (" --max-http-header-size" ,
622622 " set the maximum size of HTTP headers (default: 16384 (16KB))" ,
0 commit comments