Razor is new view engine in ASP.NET MVC 3, as the WebForms view engine wasn't always perhaps the best fit for MVC, particularly with unit testing--they used it because it was there. But it does work, ASP.NET WebForms continues to use it, and lots of ASP.NET MVC sites are already using it (since this was the only "blessed" option in MVC 1 and 2). Razor's "layouts" are essentially the same building block as "master pages" in the WebForms view engine.
"Replace" is probably a strong word to use in this case, since the WebForms view engine continues to be used in a related, supported technology (WebForms; MVC didn't replace WebForms); Razor is just a new alternative for MVC along the lines of NHaml or Spark.
If you have existing MVC sites using the WebForms view engine, I certainly wouldn't bother rewriting them in Razor. But for new sites, it has a nicer syntax and is designed to function independently of the ASP.NET runtime, better enabling it for use in unit testing and in other scenarios (such as generating e-mails from templates, etc.)
Hope that clears things up a bit.